Changing overhead Gui through leaderstats?
I'm not sure why this is proving so difficult, but I have a leaderstats script that works as well as an overhead gui script which works. I would like to change the overhead gui text, based on the leaderstat value of the player ie - a title/rank system. Could I not just add an "if" statement at line 3 that checks for the players leaderstats.Money.Value? Something that would end like Money.Value >= 2000 then...? Thanks. This has been my Achilles Heel lately.
01 | game.Players.PlayerAdded:Connect(onPlayerRespawned) |
02 | function onPlayerRespawned(newPlayer) |
05 | local gui = Instance.new( "BillboardGui" ) |
06 | gui.Parent = newPlayer.Character.Head |
07 | gui.Adornee = newPlayer.Character.Head |
08 | gui.Size = UDim 2. new( 3 , 0 , 4 , 0 ) |
09 | gui.StudsOffset = Vector 3. new( 0 , 1 , 0 ) |
10 | local name = Instance.new( "TextLabel" ) |
12 | name.BackgroundTransparency = 1 |
14 | name.Size = UDim 2. new( 1 , 0 , 1 , 0 ) |
15 | name.Position = UDim 2. new( 0 , 0 ,- 0.41 , 0 ) |
16 | name.TextColor 3 = Color 3. new( 255 , 255 , 255 ) |
17 | name.FontSize = "Size18" |
20 | function onPlayerEntered(newPlayer) |
21 | newPlayer.Changed:Connect( function (property) |
22 | if (property = = "Character" ) then |
23 | onPlayerRespawned(newPlayer) |
28 | game.Players.PlayerAdded:Connect(onPlayerEntered) |