RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a loading screen using a frame saying teleporting..."
-- local script local Players = game:GetService("Players") local player = Players.LocalPlayer local gui = player.PlayerGui local frame = gui:WaitForChild("LoadingFrame") local textLabel = frame:WaitForChild("TeleportingText") frame.Visible = true textLabel.Text = "Teleporting..." -- Teleport or load the game here wait(5) -- Example waiting time frame.Visible = false textLabel.Text = ""