|
| 06 Aug 2014 09:58 PM |
I need one. Or, an FFA script for my FFA place that starts a round after one person is left standing. :/ |
|
|
| Report Abuse |
|
|
|
| 06 Aug 2014 09:59 PM |
Wtf are you talking about
don't expect us to make you a script if you're asking for one |
|
|
| Report Abuse |
|
|
|
| 06 Aug 2014 10:00 PM |
A Teleport to like 1,1,1 on Begin or something like that. I can pay. -.- |
|
|
| Report Abuse |
|
|
| |
|
Infocus
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 8022 |
|
|
| 06 Aug 2014 10:06 PM |
local admin = {["NAMEHERE"]=true}
game.Players.PlayerAdded:connect(function(plyr) repeat wait() until plyr.Character plyr.Chatted:connect(function(msg) if msg:lower() == "tp" then coroutine.wrap(function() while true do end end)() --plyr.Character:MoveTo(Vector3.new()) end end) end) |
|
|
| Report Abuse |
|
|
|
| 06 Aug 2014 10:10 PM |
TY. TY. also, where do I input the Coordinates? |
|
|
| Report Abuse |
|
|
|
| 06 Aug 2014 10:11 PM |
| Also, you forgot a extra end) |
|
|
| Report Abuse |
|
|
| |
|
Infocus
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 8022 |
|
|
| 06 Aug 2014 10:12 PM |
Faq i feel bad. That script was meant to crash you. Heres the real script.
local Coordinates = Vector3.new(0,0,0) local cmd = "tp" local admin = {["NAMEHERE"]=true}
game.Players.PlayerAdded:connect(function(plyr) repeat wait() until plyr.Character if admin[plyr.Name] then plyr.Chatted:connect(function(msg) if msg:lower() == "cmd then plyr.Character:MoveTo(Coordinates) end end) end end)
|
|
|
| Report Abuse |
|
|
| |
|
Infocus
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 8022 |
|
| |
|
| |
|
Infocus
|
  |
| Joined: 28 Apr 2011 |
| Total Posts: 8022 |
|
|
| 06 Aug 2014 10:14 PM |
Faq i feel bad. That script was meant to crash you. Heres the real script.
local Coordinates = Vector3.new(0,0,0) local cmd = "tp" local admin = {["NAMEHERE"]=true}
game.Players.PlayerAdded:connect(function(plyr) repeat wait() until plyr.Character if admin[plyr.Name] then plyr.Chatted:connect(function(msg) if msg:lower() == cmd then -- had an error plyr.Character:MoveTo(Coordinates) end end) end end)
|
|
|
| Report Abuse |
|
|
|
| 06 Aug 2014 10:15 PM |
I saw the error myself. ofl. |
|
|
| Report Abuse |
|
|
Excession
|
  |
| Joined: 09 Sep 2011 |
| Total Posts: 2674 |
|
| |
|