|
| 20 Sep 2011 07:06 PM |
function onTouch(hit) r = game.Workspace.RawrPart M = game.Workspace.Message M.Text = "Josh Told you to touch this i bet well um you are going to die very painfully now :P" wait(3) M:remove() game.Workspace = Instance.new("Message") hit.Parent.Torso.CFrame = CFrame.new(10, 8.9, -11) wait(2) hit.Parent.Torso.CFrame = CFrame.new(12, 28.8, -161) wait(2) hit.Parent.Torso.CFrame = CFrame.new(10, 8.9, -11) end
script.Parent.Touched:connect(onTouch)
|
|
|
| Report Abuse |
|
SFH2
|
  |
| Joined: 26 Jul 2011 |
| Total Posts: 103 |
|
|
| 20 Sep 2011 07:13 PM |
game.Workspace = Instance.new("Message")
...Maybe because of this. You're probably trying to parent it in game.Workspace. The second Instance.new property is the parent of the newly created object. |
|
|
| Report Abuse |
|
pwnedu46
|
  |
| Joined: 23 May 2009 |
| Total Posts: 7534 |
|
|
| 20 Sep 2011 08:22 PM |
Instance.new("Message", game.Workspace).Text = "Blah"
~ pwnedu46 ~ |
|
|
| Report Abuse |
|