i tried one method i saw possible, but it errored, i'm just now starting to get into scripting, so could anyone help me out with solving this? thank you
This Might Help.
https://scriptinghelpers.org/questions/23050/please-help-me-understand-accessing-playergui
Could be described better, but if you want the game to wait 5 seconds after the player has loaded, do this:
`` local Players = game:GetService("Players") Players.PlayerAdded:Connect(onPlayerAdded)
wait(5) -- You can switch this "wait(5) with different types of waiting to change the text
game.Players.LocalPlayer.PlayerGui.[ScreenGuiName].TextLabel.Text == "Your text here" ``
I hope that solved your problem!