Username Gui glitching - need help

  1. What do you want to achieve?
    To fix my GUI and the script

  2. What is the issue?
    the issue im having is that
    when i spawn in the game with leaderboard gui
    The Roblox Username with GUI
    it keep like glitching for no reason
    it like showing the visible Gui to my username gui as well

  3. What solutions have you tried so far?
    Changing new gui
    Tried added some another script
    didnt work any either of this

	wait()
until game:IsLoaded()

local players = game:GetService("Players")
local runService = game:GetService("RunService")
local starterGui = game:GetService("StarterGui")
local teams = game:GetService("Teams")
local tweenService = game:GetService("TweenService")
local userInputService = game:GetService("UserInputService")

local screenGui = script:FindFirstAncestorWhichIsA("ScreenGui")

local uiToggle = true
local uiCellScale = screenGui.Ui.Main.ListHolder.UIGridLayout.CellSize.Y.Scale

screenGui.Enabled = true

while true do
	local layoutOrder = 1

	starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

	for _, frame in pairs(screenGui.Ui.Main.ListHolder:GetChildren()) do
		if (frame:IsA("Frame")) then
			frame:Destroy()
		end
	end

	for _, team in pairs(teams:GetTeams()) do
		if team.Name ~= "UNIT" and #team:GetPlayers() > 0 then
			local teamFrame = screenGui.Template.Team:Clone()
			teamFrame.BackgroundColor3 = team.TeamColor.Color
			teamFrame.LayoutOrder = layoutOrder
			teamFrame.Name = string.format("[Team] %s", team.Name)
			teamFrame.Parent = screenGui.Ui.Main.ListHolder
			teamFrame.Visible = true
			teamFrame.TeamName.Text = team.Name

			for _, player:Player in pairs(team:GetPlayers()) do
				if player.Team.Name ~= "UNIT" then
					local playerFrame = screenGui.Template.Player:Clone()
					playerFrame.LayoutOrder = layoutOrder
					playerFrame.Name = string.format("[Player] %s", player.Name)
					playerFrame.Parent = screenGui.Ui.Main.ListHolder
					playerFrame.Visible = true
					
					if player.Team == game.Teams.Mafia then
						local mafia = game.ReplicatedStorage.Remotes.MafiaSystemFunction:InvokeServer("getplayermafiadataOTHER", player.UserId)
						
						if mafia then
							playerFrame.PlayerName.Text = mafia["MafiaName"].." - "..player.Name
						end
						
					else
						playerFrame.PlayerName.Text = player.Name
						
					end
					
					
					local sub = player:WaitForChild('Values', 3):WaitForChild('Subdivision', 3)
					
					if not sub then return end
					
					if sub.Value and sub.Value ~= '' then
						playerFrame:FindFirstChild('PlayerName').Text = sub.Value..' - '..player.Name
						local color = Color3.new(1, 1, 1)
						local realColor = color
						if require(game:GetService('ReplicatedStorage'):FindFirstChild('Modules'):FindFirstChild('SubColors'))[sub.Value] then
							realColor = require(game:GetService('ReplicatedStorage'):FindFirstChild('Modules'):FindFirstChild('SubColors'))[sub.Value]
						end
						playerFrame:FindFirstChild('PlayerName').TextColor3 = realColor
					end
				end
			end

			layoutOrder += 1
		end
	end

	screenGui.Ui.Main.ListHolder.UIGridLayout.CellSize = UDim2.new(1, 0, 0, screenGui.Ui.Main.AbsoluteSize.Y * uiCellScale)
	
	task.wait(0.8)
end

userInputService.InputBegan:Connect(function(input, gameProcessedEvent)
	if not (gameProcessedEvent) then
		if (input.KeyCode == Enum.KeyCode.Tab) then
			uiToggle = not uiToggle

			if (uiToggle) then
				tweenService:Create(screenGui.Ui.Main, TweenInfo.new(1), {Position = UDim2.fromScale(0.995, 0.01)}):Play()
			else
				tweenService:Create(screenGui.Ui.Main, TweenInfo.new(1), {Position = UDim2.fromScale(0.995 + 0.5, 0.01)}):Play()
			end
		end
	end
end)
6 Likes

Try removing the task.wait(0.8) at the bottom of your while true loop.

4 Likes

I’m assuming that controls the custom leaderboard. Using a while true loop is gonna eat a lot of memory, maybe change it to update on specific events (e.g. player joining, player leaving, player team change)

3 Likes

Instead updating the leaderboard every second, you can just update the leaderboard when player added or left, + real programmers never use while loop expect some cases.

game.Players.PlayerAdded:Connect(Update)

game.Players.PlayerRemoving:Connect(Update)
3 Likes

alr i will try it out
for you second comment
im not a scripter
i just need help of fixing this script really quick about it

3 Likes

My issue here is that the name of gui it keep glitching
is there a way to fix it

2 Likes

I can’t really see what happening but i bet it’s the while true

1 Like

i did that and it doesnt work
it remove my username gui with team mafia

Just move the code inside the loop and make it inside a function called Update and do what i told you to and don’t forget to remove the loop because it’s loop code never reaches to InputBegan

I dont really seem to understand what you mean by this

if i remove the while true
it show me some error red line

wait()
until game:IsLoaded()

local players = game:GetService("Players")
local runService = game:GetService("RunService")
local starterGui = game:GetService("StarterGui")
local teams = game:GetService("Teams")
local tweenService = game:GetService("TweenService")
local userInputService = game:GetService("UserInputService")

local screenGui = script:FindFirstAncestorWhichIsA("ScreenGui")

local uiToggle = true
local uiCellScale = screenGui.Ui.Main.ListHolder.UIGridLayout.CellSize.Y.Scale

screenGui.Enabled = true

function Update()
	local layoutOrder = 1

	starterGui:SetCoreGuiEnabled(Enum.CoreGuiType.PlayerList, false)

	for _, frame in pairs(screenGui.Ui.Main.ListHolder:GetChildren()) do
		if (frame:IsA("Frame")) then
			frame:Destroy()
		end
	end

	for _, team in pairs(teams:GetTeams()) do
		if team.Name ~= "UNIT" and #team:GetPlayers() > 0 then
			local teamFrame = screenGui.Template.Team:Clone()
			teamFrame.BackgroundColor3 = team.TeamColor.Color
			teamFrame.LayoutOrder = layoutOrder
			teamFrame.Name = string.format("[Team] %s", team.Name)
			teamFrame.Parent = screenGui.Ui.Main.ListHolder
			teamFrame.Visible = true
			teamFrame.TeamName.Text = team.Name

			for _, player:Player in pairs(team:GetPlayers()) do
				if player.Team.Name ~= "UNIT" then
					local playerFrame = screenGui.Template.Player:Clone()
					playerFrame.LayoutOrder = layoutOrder
					playerFrame.Name = string.format("[Player] %s", player.Name)
					playerFrame.Parent = screenGui.Ui.Main.ListHolder
					playerFrame.Visible = true
					
					if player.Team == game.Teams.Mafia then
						local mafia = game.ReplicatedStorage.Remotes.MafiaSystemFunction:InvokeServer("getplayermafiadataOTHER", player.UserId)
						
						if mafia then
							playerFrame.PlayerName.Text = mafia["MafiaName"].." - "..player.Name
						end
						
					else
						playerFrame.PlayerName.Text = player.Name
						
					end
					
					
					local sub = player:WaitForChild('Values', 3):WaitForChild('Subdivision', 3)
					
					if not sub then return end
					
					if sub.Value and sub.Value ~= '' then
						playerFrame:FindFirstChild('PlayerName').Text = sub.Value..' - '..player.Name
						local color = Color3.new(1, 1, 1)
						local realColor = color
						if require(game:GetService('ReplicatedStorage'):FindFirstChild('Modules'):FindFirstChild('SubColors'))[sub.Value] then
							realColor = require(game:GetService('ReplicatedStorage'):FindFirstChild('Modules'):FindFirstChild('SubColors'))[sub.Value]
						end
						playerFrame:FindFirstChild('PlayerName').TextColor3 = realColor
					end
				end
			end

			layoutOrder += 1
		end
	end

	screenGui.Ui.Main.ListHolder.UIGridLayout.CellSize = UDim2.new(1, 0, 0, screenGui.Ui.Main.AbsoluteSize.Y * uiCellScale)
	
	task.wait(0.8)
end

game.Players.PlayerAdded(Update)
game.Players.PlayerRemoving(Update)

userInputService.InputBegan:Connect(function(input, gameProcessedEvent)
	if not (gameProcessedEvent) then
		if (input.KeyCode == Enum.KeyCode.Tab) then
			uiToggle = not uiToggle

			if (uiToggle) then
				tweenService:Create(screenGui.Ui.Main, TweenInfo.new(1), {Position = UDim2.fromScale(0.995, 0.01)}):Play()
			else
				tweenService:Create(screenGui.Ui.Main, TweenInfo.new(1), {Position = UDim2.fromScale(0.995 + 0.5, 0.01)}):Play()
			end
		end
	end
end)

For this, remove the task.wait(0.8) and I recommend you to use runservice.Stepped without waits.

there one error about until wait game is loaded
image

Do this repeat wait() until game:IsLoaded()

i did remove the task.wait then it dissapear whole the name gui expect team gui

nope it didnt work the leaderboard gui isnt showing up

are u able to help me with any way??

Luke @KSA_Developer said, use a seperate function to manage the updating. I’d suggest also using a coroutine. That way, the UserInputServics lines will still fire.

local Update = coroutine.create(function()
    --replacing while true
    while task.wait(0.8) do
        --update code here
    end
end)

coroutine.resume(Update)

Let me know if you get any errors in the output.

Do you want me like to copy it and paste on the code??

because the new script that KSA give me
it didnt work