im trying to change a text label on a screen gui in starter gui when you click a part
here is the code
local Textlabelforthingy = game.StarterGui.ScreenGui.TextLabel
script.Parent.ClickDetector.MouseClick:Connect(function()
Textlabelforthingy.Text = "the part has been clicked"
end
Ok, so you don't use StarterGui
, you use PlayerGui
Here is the fix:
1 | --Local Script. |
2 | local plr = game.Players.LocalPlayer |
3 | local Textlabelforthingy = plr.PlayerGui.ScreenGui.TextLabel |
4 |
5 | script.Parent.ClickDetector.MouseClick:Connect( function () |
6 | Textlabelforthingy.Text = "the part has been clicked" |
7 | end |
It is because you are changing it in StarterGui you need to change it in the Player Gui
1 | script.Parent.ClickDetector.MouseClick:Connect( function (player) |
2 | local Textlabelforthingy = player.PlayerGui.ScreenGui.TextLabel |
3 | Textlabelforthingy.Text = "the part has been clicked" |
4 | end ) |