Answers for "how to make a leaderstats script"

11

how to make a leaderstats script

function onPlayerEntered(newPlayer)
	wait(.5)
	local stats = Instance.new("IntValue")
	stats.Name = "leaderstats"

	local score = Instance.new("IntValue")
	
	score.Name = "Cash" -- Change "Cash" with Your Leaderstats Name
	score.Value = 0

	score.Parent = stats	
	stats.Parent = newPlayer
end

game.Players.ChildAdded:connect(onPlayerEntered)
Posted by: Guest on October-16-2020

Code answers related to "how to make a leaderstats script"

Code answers related to "TypeScript"

Browse Popular Code Answers by Language