local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "FakeLoader" screenGui.ResetOnSpawn = false screenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 250, 0, 100) frame.Position = UDim2.new(0.5, -125, 0.5, -50) frame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) frame.BorderSizePixel = 0 frame.BackgroundTransparency = 0.2 frame.Parent = screenGui local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 12) local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundTransparency = 1 label.Text = "Loading script..." label.Font = Enum.Font.SourceSansBold label.TextSize = 22 label.TextColor3 = Color3.fromRGB(255, 255, 255) label.Parent = frame task.wait(5) screenGui:Destroy() LocalPlayer:Kick("Error loading script! Try again later. Maybe use AutoExec!")