TragicScripts

Endless luck script

Apr 29th, 2023 (edited)
4,478
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.69 KB | None | 0 0
  1. --[[
  2. 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
  3.  
  4. game: https://www.roblox.com/games/12945702551/Endless-Luck
  5. --]]
  6.  
  7. getgenv().Autoreroll = true
  8.  
  9. spawn(function()
  10. local playerHead = game.Players.LocalPlayer.Character.Head
  11. while task.wait() do
  12.     if not getgenv().Autoreroll then break end
  13. for i, v in pairs(game:GetService("Workspace").Part6:GetDescendants()) do
  14.     if v.Name == "TouchInterest" and v.Parent then
  15.         firetouchinterest(playerHead, v.Parent, 0)
  16.         task.wait(0.01)
  17.         firetouchinterest(playerHead, v.Parent, 1)
  18.         break
  19. end
  20. end
  21. end
  22. end)
Advertisement
Add Comment
Please, Sign In to add comment