FlameYeti
|
  |
| Joined: 14 Jan 2009 |
| Total Posts: 22158 |
|
| |
|
|
| 20 Sep 2015 09:34 PM |
Script in the brick,
script.Parent.Touched:connect(function(p) if p.Parent:findFirstChild("Humanoid") then for _, v in pairs (p.Parent:GetChildren()) do if v:IsA("Part") then v.Anchored = true end) end end |
|
|
| Report Abuse |
|
|
|
| 20 Sep 2015 09:37 PM |
This would be a regular script inside of the part you want to make them "freeze" on touch.
script.Parent.Touched:connect(function(hit) if hit.Parent.Humanoid ~= nil then hit.Parent.Torso.Anchored = true hit.Parent["Left Arm"].Anchored = true hit.Parent["Right Arm"].Anchored = true hit.Parent.Head.Anchored = true hit.Parent["Left Leg"].Anchored = true hit.Parent["Right Leg"].Anchored = true end end)
-AdministratorRights, Forum Helper |
|
|
| Report Abuse |
|
|
|
| 20 Sep 2015 09:38 PM |
@LilMcManiac
That will not work, as theres a glitch and you go "Ghost mode" and you become invisible, and you can see your body, and walk around.
-AdministratorRights, Forum Helper |
|
|
| Report Abuse |
|
|
FlameYeti
|
  |
| Joined: 14 Jan 2009 |
| Total Posts: 22158 |
|
| |
|