Answers for "get character from playerremoving roblox"

3

roblox how to get character from player

-- Player = Stores stuff like you UserId. Its you!- Developers have access to like purchases and so
-- Character = How you look like - The Model in your Workspace
-- Humanoid = A little Robot inside the Character that Holds Values like your Health or WalkSpeed
game.Players.PlayerAdded:Connect(function(plr)
	plr.CharacterAdded:Connect(function(Character)
		print(Character.Name)
	end)
end)
Posted by: Guest on December-31-2021

Code answers related to "get character from playerremoving roblox"

Browse Popular Code Answers by Language