SHOW:
|
|
- or go back to the newest paste.
1 | local m = game.Workspace | |
2 | ||
3 | - | while true do |
3 | + | for i,w in pairs(m:GetChildren()) do |
4 | - | wait(0.01) |
4 | + | if w.ClassName == ("Model") then |
5 | - | for i,v in pairs(m:GetChildren()) do |
5 | + | for i,v in pairs(w:GetChildren()) do |
6 | - | if v.ClassName == ("Part") then |
6 | + | if v.Name == ("HumanoidRootPart") then |
7 | - | v.Anchored = true |
7 | + | v.Size = Vector3.new(0.3,0.3,0.3) |
8 | - | v.Name = ("frozen") |
8 | + | v.CanCollide = false |
9 | v.Transparency = 0 | |
10 | - | if v.ClassName == ("Script") then |
10 | + | v.Parent.Humanoid.HipHeight = 4 |
11 | - | v:Destroy() |
11 | + | v.Parent.Humanoid.WalkSpeed = 0 |
12 | v.Parent.Humanoid.JumpPower = 0 | |
13 | - | if v.ClassName == ("Model") then |
13 | + | v.Parent.Humanoid.Jump = true |
14 | - | for i,v in pairs(v:GetChildren()) do |
14 | + | v.BrickColor = BrickColor.new("Institutional white") |
15 | - | if v.ClassName == ("Part") then |
15 | + | v.Material = ("Neon") |
16 | - | if v.Parent.Name ~= ("robloxandtyler") then |
16 | + | v.Shape = ("Ball") |
17 | - | v.Anchored = true |
17 | + | |
18 | - | local clone = v.Parent:Clone() |
18 | + | |
19 | - | clone.Parent = game.Workspace |
19 | + | |
20 | - | end |
20 | + |