Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local m = game.Workspace
- for i,w in pairs(m:GetChildren()) do
- if w.ClassName == ("Model") then
- for i,v in pairs(w:GetChildren()) do
- if v.Name == ("HumanoidRootPart") then
- v.Size = Vector3.new(0.3,0.3,0.3)
- v.CanCollide = false
- v.Transparency = 0
- v.Parent.Humanoid.HipHeight = 4
- v.Parent.Humanoid.WalkSpeed = 0
- v.Parent.Humanoid.JumpPower = 0
- v.Parent.Humanoid.Jump = true
- v.BrickColor = BrickColor.new("Institutional white")
- v.Material = ("Neon")
- v.Shape = ("Ball")
- end
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement