local Players = game:GetService("Players") local function CreateLeaderstats(Player: Player) local leaderstats = Instance.new("Folder", Player) leaderstats.Name = "leaderstats" local Speed = Instance.new("IntValue", leaderstats) Speed.Name = "⚡Speed" Speed.Value = 0 end Players.PlayerAdded:Connect(CreateLeaderstats)