Pav9495
|
  |
| Joined: 07 Nov 2008 |
| Total Posts: 341 |
|
|
| 06 May 2012 06:41 AM |
| I am trying to CFrame a character into the ground when he touches a brick. I've tried multiple things from usual CFrame to creating a new part, welding it to him and CFraming it, but nothing works. Does anybody know how I can achieve what I want ? |
|
|
| Report Abuse |
|
velibor
|
  |
| Joined: 24 Nov 2009 |
| Total Posts: 1003 |
|
|
| 06 May 2012 07:19 AM |
Hmm. Should this possible work..
script.Parent.Touched:connect(function(hit) if Game:GetService("Players"):findFirstChild(hit.Parent.Name) then print("We have a Player !") Game:GetService("Players")[hit.Parent.Name].Character:MoveTo(Game.Workspace.Ground.Position - Vector3.new(3,0,0,0)) end end)
That might work..
Velibor
|
|
|
| Report Abuse |
|