What's new
Heapleak - Scripthub

Get the most out of HeapLeak by creating a free account! Once signed in, you’ll gain full access to restricted content, be able to share your own scripts, and participate in our member-only discussions.

Heads or Tails fast autospin script

Version / Update: v1.0.0
Download / Script Link
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)
[ View More ]
f18b41d7-f4b6-498b-bc49-1add70f80250.webp


Press the spin button, then it will auto spin
 
Works on mobile
  1. Yes
Back
Top