local Player = game:GetService("Players").LocalPlayer
local PlayerGui = Player:WaitForChild("PlayerGui")
local TextLabel = PlayerGui:WaitForChild("LoadingScreen"):WaitForChild("LoadingImage"):WaitForChild("LoadingText")
local Text = TextLabel.Text
while true do
Text = "Loading."
wait(1)
Text = "Loading.."
wait(1)
Text = "Loading..."
wait(1)
end
Heres my code, its not changing the GUI text when I test it out.