Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

someone tell me how to divide this table age and seconds?

Asked by 3 years ago

age i get but i dont get seconds i dont know how divide function Entered(player) wait(0.03) if player:findFirstChild("leaderstats") ~= nil then player.leaderstats:remove() end local stats = Instance.new("Model") stats.Parent = player stats.Name = "leaderstats" local age = Instance.new("IntValue") age.Parent = stats age.Name = "Age" age.Value = player.AccountAge end game.Players.PlayerAdded:connect(Entered)

c = game.Players:GetChildren() for i=1, #c do Entered(c[i]) end

Answer this question