Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- loadstring(game:HttpGet("https://pastebin.com/raw/fzY5U2am"))()
- -- Create the ScreenGui
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "SkidderScreenGui"
- screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- -- Create and configure the Frame
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(1, 0, 1, 0)
- frame.Position = UDim2.new(0, 0, 0, 0)
- frame.BackgroundColor3 = Color3.new(0, 0, 0) -- Black color
- frame.Parent = screenGui
- -- Create and configure the SkidderLabel
- local skidderLabel = Instance.new("TextLabel")
- skidderLabel.Size = UDim2.new(1, 0, 0.5, 0)
- skidderLabel.Position = UDim2.new(0, 0, 0, 0)
- skidderLabel.Text = "Loading Krypton"
- skidderLabel.TextColor3 = Color3.new(1, 1, 1) -- White color
- skidderLabel.TextScaled = true
- skidderLabel.Font = Enum.Font.SourceSansBold
- skidderLabel.BackgroundTransparency = 1
- skidderLabel.Parent = frame
- -- Create and configure the CountdownLabel
- local countdownLabel = Instance.new("TextLabel")
- countdownLabel.Size = UDim2.new(1, 0, 0.5, 0)
- countdownLabel.Position = UDim2.new(0, 0, 0.5, 0)
- countdownLabel.TextColor3 = Color3.new(1, 1, 1) -- White color
- countdownLabel.TextScaled = true
- countdownLabel.BackgroundTransparency = 1
- countdownLabel.Parent = frame
- -- Countdown logic
- local countdown = 15
- -- Function to update the countdown
- local function updateCountdown()
- for i = countdown, 1, -1 do
- countdownLabel.Text = tostring(i)
- wait(1) -- Wait for 1 second
- end
- countdownLabel.Text = "Took a picture of you skid twink" -- Clear the text after the countdown
- print("Ended") -- Print "Ended" after the countdown
- end
- -- Start the countdown when the script runs
- updateCountdown()
Advertisement
Add Comment
Please, Sign In to add comment