Created by Septex#2195
Features:
- AUTO SPINS
- AUTO SPIN FAMILY
SCRIPTS: [2]
INFINITE SPIN:
local amount = 1000
game:GetService("ReplicatedStorage")._Turn:FireServer("RaceRolls", amount)
game:GetService("ReplicatedStorage")._Turn:FireServer("FamilyRolls", amount)
AUTO SPIN FAMILY:
local Wanted = {"Monkey"}
repeat
if not table.find(Wanted,game.Players.LocalPlayer.Data.Family.Value) then
game:GetService("ReplicatedStorage")._Turn:FireServer("Roll", "Family")
end
task.wait(0.1)
until table.find(Wanted,game.Players.LocalPlayer.Data.Family.Value)