ADVERTISEMENTREMOVE ADS
AOT:E Auto Spin (Open-Source)
9,606 views
Description
AOT:E Auto Spin (Open-Source)
Automatically kicks when you got the selected family
Automatically kicks when you got the selected family
Features:
- Auto Spin
ADVERTISEMENTREMOVE ADS
31 Lines • 894 Bytes
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
ADVERTISEMENTREMOVE ADS






Comments