No Output, Please Help! (It's Not In A Local Script)
local N = script.Parent.N local LB = script.Parent.LeaderBoard game.Players.PlayerAdded:connect(function(player) for i, v in pairs(LB:GetChildren()) do if v.ClassName == "TextLabel" then v.Position = v.Position + UDim2.new(0, 0, 0, 25) end end Name = N:Clone() Name.Parent = LB Name.Text = player.Name Name.Visible = true end)