|
| 22 Aug 2015 12:38 PM |
| How to run a function once the character loads? |
|
|
| Report Abuse |
|
|
| 22 Aug 2015 12:40 PM |
game.Players.PlayerAdded:connect(function(Player) Player.CharacterAdded:connect(function(Char) foo() end) end)
local Player = game.Players.LocalPlayer Player.CharacterAdded:wait()
foo() |
|
|
| Report Abuse |
|