Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- original: https://scriptblox.com/script/Bulked-Up-GUI-13986 . this one just adds a candy autocollect
- local ur = game:GetService("ReplicatedStorage").Events.unRagdoll
- local lp = game:GetService('Players').LocalPlayer
- local ar = false
- local agc = false
- local abg = false
- local hrp = lp.Character.HumanoidRootPart
- Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/VeztWare/KavoUi/main/KavoUi.lua"))()
- local Window = Library.CreateLib("Bulked up", "Midnight")
- local Tab = Window:NewTab("Main")
- local Section = Tab:NewSection("Main")
- Section:NewToggle("Anti ragdoll", "Spams to the server to unragdoll you", function(state)
- ar = state
- end)
- Section:NewToggle("Auto gem collector", "Collects gems automatically", function(state)
- agc = state
- end)
- Section:NewToggle("Auto candy collector", "Collects candies automatically", function(state)
- abg = state
- end)
- lp.CharacterAdded:Connect(function(character)
- hrp = character:WaitForChild('HumanoidRootPart')
- end)
- while wait() do
- if ar then
- ur:FireServer(chr)
- end
- if agc then
- for _, v in pairs(workspace:GetChildren()) do
- if v.Name == 'Gem' then
- v.Position = hrp.Position
- end
- end
- end
- if abg then
- for _, v in pairs(workspace:GetChildren()) do
- if v.Name == 'Candy' then
- v.Position = hrp.Position
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement