ADVERTISEMENTREMOVE ADS

AOT:E Auto Spin (Open-Source)

Script preview thumbnail
Script Preview
Dx
Dxctor

Description

AOT:E Auto Spin (Open-Source)

Automatically kicks when you got the selected family

Features:

  • Auto Spin
ADVERTISEMENTREMOVE ADS
31 Lines • 894 Bytes
Raw
local family = {"YEAGER","ACKERMAN","REISS"} -- All Characters must be upper letters Example: SMITH
local famltext
function familyupdate()
famltext = game:GetService("Players").LocalPlayer.PlayerGui.Interface.Customisation.Right.Family.Selected.Text
end
function spin()
local spinbut = game:GetService("Players").LocalPlayer.PlayerGui.Interface.Customisation.Right.Family.Buttons.Roll
local epreroll = game:GetService("Players").LocalPlayer.PlayerGui.Interface.Customisation.Notification.Accept
for i,v in pairs(getconnections(epreroll.MouseButton1Click)) do
v:Fire()
end
for i,v in pairs(getconnections(spinbut.MouseButton1Click)) do
v:Fire()
end
end
spin()
while true do
wait(6)
familyupdate()
for i,v in pairs(family) do
if v == famltext then
wait(10)
game.Players.LocalPlayer:Kick("You Got Selected Family! :)")
end
end
spin()
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS