#how can i make a over head GUI that shows player user and bellow it a value from leaderstats

12 messages · Page 1 of 1 (latest)

scenic jackal
#

how can i make a over head GUI that shows player user and bellow it a value from leaderstats

stray idol
#

this seems very hard to me

#

i will try to find some sort of way

#

wait

#

have you already done the iverhead gui? @scenic jackal

scenic jackal
#

nope

#

i tried but its hard

#
local text = billgui.TimeLabel
local event = game.ReplicatedStorage.ChangeTime

game.Players.PlayerAdded:Connect(function(plr)
    plr.CharacterAdded:Connect(function(plr)
        char.Humanoid.NameDisplayType = 0
        local newOverhead = billgui:Clone()
        newOverhead.Parent = char.Head
        local newText = newOverhead.TimeLabel
        newText.Text = "Time: "..plr.leaderstats.Time.Value
    end)
end)```
#

is this right

#

@stray idol

frozen rivet
#

Give me a moment