RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script to make a loading screen"
-- local script (StarterGUI) local player = game.Players.LocalPlayer local screenGui = Instance.new("ScreenGui", player.PlayerGui) local loadingScreen = Instance.new("Frame", screenGui) loadingScreen.BackgroundColor3 = Color3.fromRGB(0, 0, 0) loadingScreen.Size = UDim2.new(1, 0, 1, 0) local loadingText = Instance.new("TextLabel", loadingScreen) loadingText.Text = "Loading..." loadingText.TextColor3 = Color3.fromRGB(255, 255, 255) loadingText.BackgroundColor3 = Color3.fromRGB(0, 0, 0) loadingText.Size = UDim2.new(1, 0, 1, 0) loadingText.TextScaled = true local function removeLoadingScreen() loadingScreen:Destroy() end game.Loaded:Connect(removeLoadingScreen)