Advertisement
Guest User

Untitled

a guest
Apr 22nd, 2019
254
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. local meme = game:GetService("Players").qeeeqx
  2. local chr = meme.Character --Get player character
  3.  
  4.  
  5. chr.Humanoid.WalkSpeed = 50
  6. chr.Humanoid.MaxHealth = math.huge
  7. chr.Humanoid.Health = math.huge
  8. chr.Humanoid.JumpPower = 70
  9.  
  10.  
  11. for _,ch in ipairs(chr:GetChildren()) do
  12. if ch.className == 'Part' then
  13. ch.CanCollide = true
  14.  
  15. end
  16. end
  17.  
  18. meme.Character.Torso.Touched:Connect(function(yes)
  19. if game:GetService('Players'):FindFirstChild(yes.Parent.Name) then
  20. yes.Parent:BreakJoints()
  21. else
  22. yes.Anchored = false
  23. yes.CanCollide = true
  24. yes:BreakJoints()
  25. end
  26. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement