Advertisement
anam8214

roblox bulked up script

Oct 23rd, 2024 (edited)
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.40 KB | None | 0 0
  1. -- original: https://scriptblox.com/script/Bulked-Up-GUI-13986 . this one just adds a candy autocollect
  2. local ur = game:GetService("ReplicatedStorage").Events.unRagdoll
  3. local lp = game:GetService('Players').LocalPlayer
  4. local ar = false
  5. local agc = false
  6. local abg = false
  7. local hrp = lp.Character.HumanoidRootPart
  8.  
  9. Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/VeztWare/KavoUi/main/KavoUi.lua"))()
  10.  
  11. local Window = Library.CreateLib("Bulked up", "Midnight")
  12. local Tab = Window:NewTab("Main")
  13. local Section = Tab:NewSection("Main")
  14.  
  15. Section:NewToggle("Anti ragdoll", "Spams to the server to unragdoll you", function(state)
  16.     ar = state
  17. end)
  18.  
  19. Section:NewToggle("Auto gem collector", "Collects gems automatically", function(state)
  20.     agc = state
  21. end)
  22.  
  23. Section:NewToggle("Auto candy collector", "Collects candies automatically", function(state)
  24.     abg = state
  25. end)
  26.  
  27.  
  28. lp.CharacterAdded:Connect(function(character)
  29.     hrp = character:WaitForChild('HumanoidRootPart')
  30. end)
  31.  
  32. while wait() do
  33.     if ar then
  34.         ur:FireServer(chr)
  35.     end
  36.     if agc then
  37.         for _, v in pairs(workspace:GetChildren()) do
  38.             if v.Name == 'Gem' then
  39.                 v.Position = hrp.Position
  40.             end
  41.         end
  42.     end
  43.     if abg then
  44.         for _, v in pairs(workspace:GetChildren()) do
  45.             if v.Name == 'Candy' then
  46.                 v.Position = hrp.Position
  47.             end
  48.         end
  49.     end
  50. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement