|
| 06 Sep 2015 07:26 PM |
I have 2 arguments I am sending from the clients to the server and I don't want them to be printed at the same time, I want each of them to be printed differently.
script:WaitForChild("CallServer") script.CallServer.OnClientEvent:connect(function(player, arguments) local k = script.Parent.Parent.Kart local s = script.Parent.Parent.StartPosition game.Workspace.Data:FireServer(k.Value) game.Workspace.Data:FireServer(s.Value) end)
event2 = game.Workspace.Data event2.OnServerEvent:connect(function(player, arguments) print(player.Name .. " says " .. arguments[1]) print(player.Name .. " says " .. arguments[2])
end)
I am special because I have a siggy (👌 ͡° ͜ʖ ͡°👏) |
|
|
| Report Abuse |
|
|
| 06 Sep 2015 07:46 PM |
b1
I am special because I have a siggy (👌 ͡° ͜ʖ ͡°👏) |
|
|
| Report Abuse |
|
|
| 06 Sep 2015 08:02 PM |
b2
I am special because I have a siggy (👌 ͡° ͜ʖ ͡°👏) |
|
|
| Report Abuse |
|