|
| 04 May 2013 08:04 PM |
| Can someone help me, I have no knowledge in scripting that involves teleporting to a brick. I need some kind of script on when you enter it puts you inside the fighting grounds. after that it gives you a random sword from the lighting then if you die you spectate the other fighters and if you win everyone you get 100 points for upgrades or something. |
|
|
| Report Abuse |
|
|
Ferki
|
  |
| Joined: 22 Jan 2013 |
| Total Posts: 968 |
|
|
| 04 May 2013 08:05 PM |
| "Script Helpers" Don't really do Requests, But I'm sure someone will do it. |
|
|
| Report Abuse |
|
|
|
| 04 May 2013 08:07 PM |
| Im also really rusty at scripting now. |
|
|
| Report Abuse |
|
|
Ferki
|
  |
| Joined: 22 Jan 2013 |
| Total Posts: 968 |
|
|
| 04 May 2013 08:12 PM |
Well, the teleporting part is easy. Put this in a brick:
function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") h.Parent.Torso.CFrame = CFrame.new(0, 0, 0) --//Replace with the position that you want end
script.Parent.Touched:connect(onTouched)
|
|
|
| Report Abuse |
|
|
Ferki
|
  |
| Joined: 22 Jan 2013 |
| Total Posts: 968 |
|
|
| 04 May 2013 08:19 PM |
Actually no, Use: function onTouched(hit) local human = hit.Parent:findFirstChild("Humanoid") if (human ~= nil ) then hit.Parent.Torso.CFrame = CFrame.new(0,0,0) --Teleport Player end end script.Parent.Touched:connect(onTouched) |
|
|
| Report Abuse |
|
|