Advertisement
dahpiglz

Untitled

Aug 13th, 2017
140
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local m = game.Workspace
  2.  
  3. for i,w in pairs(m:GetChildren()) do
  4. if w.ClassName == ("Model") then
  5. for i,v in pairs(w:GetChildren()) do
  6. if v.Name == ("HumanoidRootPart") then
  7. v.Size = Vector3.new(0.3,0.3,0.3)
  8. v.CanCollide = false
  9. v.Transparency = 0
  10. v.Parent.Humanoid.HipHeight = 4
  11. v.Parent.Humanoid.WalkSpeed = 0
  12. v.Parent.Humanoid.JumpPower = 0
  13. v.Parent.Humanoid.Jump = true
  14. v.BrickColor = BrickColor.new("Institutional white")
  15. v.Material = ("Neon")
  16. v.Shape = ("Ball")
  17. end
  18. end
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement