ADVERTISEMENTREMOVE ADS
Tails fast autospin script
26,486 views
Script Preview
Description
Press the spin button, then it will auto spin
Features:
- Auto Spin
Tested with
ADVERTISEMENTREMOVE ADS
42 Lines • 1.11 KiB
local gui = Instance.new("ScreenGui")
gui.Parent = game:GetService("CoreGui")
local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 150, 0, 50)
button.Position = UDim2.new(0.5, -75, 0.8, 0)
button.Text = "Spin: OFF"
button.BackgroundColor3 = Color3.fromRGB(255, 100, 100)
button.TextColor3 = Color3.fromRGB(255, 255, 255)
button.Font = Enum.Font.SourceSansBold
button.TextSize = 22
button.Parent = gui
local spinning = false
button.MouseButton1Click:Connect(function()
spinning = not spinning
if spinning then
button.Text = "Spin: ON"
button.BackgroundColor3 = Color3.fromRGB(100, 255, 100)
task.spawn(function()
while spinning do
local args = {"Tails"}
game:GetService("ReplicatedStorage")
:WaitForChild("src")
:WaitForChild("Modules")
:WaitForChild("KnitClient")
:WaitForChild("Services")
:WaitForChild("SpinService")
:WaitForChild("RE")
:WaitForChild("Spin")
:FireServer(unpack(args))
task.wait()
end
end)
else
button.Text = "Spin: OFF"
button.BackgroundColor3 = Color3.fromRGB(255, 100, 100)
end
end)
ADVERTISEMENTREMOVE ADS
ADVERTISEMENTREMOVE ADS






Comments