Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- basically this script sets your auto reroll to 100% so you don't need to stand on the luck button to get luck, this increases ur productivity dramatically
- game: https://www.roblox.com/games/12945702551/Endless-Luck
- --]]
- getgenv().Autoreroll = true
- spawn(function()
- local playerHead = game.Players.LocalPlayer.Character.Head
- while task.wait() do
- if not getgenv().Autoreroll then break end
- for i, v in pairs(game:GetService("Workspace").Part6:GetDescendants()) do
- if v.Name == "TouchInterest" and v.Parent then
- firetouchinterest(playerHead, v.Parent, 0)
- task.wait(0.01)
- firetouchinterest(playerHead, v.Parent, 1)
- break
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment