#Script runs one time when player joins the game

4 messages · Page 1 of 1 (latest)

deep karma
#

game.Players.PlayerAdded

#

so for example

#
local Players = game:GetService("Players")

Players.PlayerAdded:Connect(function(player)
-- code stuff here
end)
#

hope this helps