ServerScriptService

mail@pastecode.io avatar
unknown
lua
15 days ago
188 B
4
Indexable
Never
game.Players.PlayerAdded:Connect(function(player)
	local scoreValue = Instance.new("IntValue")
	scoreValue.Name = "ScoreValue"
	scoreValue.Value = 0
	scoreValue.Parent = player
end)
Leave a Comment