Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR LUA

wait for player character roblox

local players = game.Players

-- This event fires when the the full appearance of a Player’s Player.Character has been inserted.

players.PlayerAdded:Connect(function(plr)
	plr.CharacterAppearanceLoaded:Connect(function(char)
		-- Your Code :P		
	end)
end)
Source by developer.roblox.com #
 
PREVIOUS NEXT
Tagged: #wait #player #character #roblox
ADD COMMENT
Topic
Name
1+9 =