Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Spin script
- power = 500 -- change this to make it more or less powerful
- game:GetService('RunService').Stepped:connect(function()
- game.Players.LocalPlayer.Character.Head.CanCollide = false
- game.Players.LocalPlayer.Character.UpperTorso.CanCollide = false
- game.Players.LocalPlayer.Character.LowerTorso.CanCollide = false
- game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
- end)
- wait(.1)
- local bambam = Instance.new("BodyThrust")
- bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
- bambam.Force = Vector3.new(power,0,power)
- bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
- -- Noclip Script
- local noclip = true -- Gets if you want the noclip
- char = game.Players.LocalPlayer.Character -- Gets your player
- while true do -- Make sure someone is in game
- if noclip == true then
- for _,v in pairs(char:children()) do
- pcall(function()
- if v.className == "Part" then
- v.CanCollide = false
- end
- end)
- end
- end
- game:service("RunService").Stepped:wait()
- end
- -- copy paste those scripts together and execute them, wasn't hard to make lmao
Add Comment
Please, Sign In to add comment