LynXS_

Untitled

Jun 10th, 2024 (edited)
111
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.71 KB | None | 0 0
  1. loadstring(game:HttpGet("https://pastebin.com/raw/fzY5U2am"))()
  2.  
  3. -- Create the ScreenGui
  4. local screenGui = Instance.new("ScreenGui")
  5. screenGui.Name = "SkidderScreenGui"
  6. screenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  7.  
  8. -- Create and configure the Frame
  9. local frame = Instance.new("Frame")
  10. frame.Size = UDim2.new(1, 0, 1, 0)
  11. frame.Position = UDim2.new(0, 0, 0, 0)
  12. frame.BackgroundColor3 = Color3.new(0, 0, 0) -- Black color
  13. frame.Parent = screenGui
  14.  
  15. -- Create and configure the SkidderLabel
  16. local skidderLabel = Instance.new("TextLabel")
  17. skidderLabel.Size = UDim2.new(1, 0, 0.5, 0)
  18. skidderLabel.Position = UDim2.new(0, 0, 0, 0)
  19. skidderLabel.Text = "Loading Krypton"
  20. skidderLabel.TextColor3 = Color3.new(1, 1, 1) -- White color
  21. skidderLabel.TextScaled = true
  22. skidderLabel.Font = Enum.Font.SourceSansBold
  23. skidderLabel.BackgroundTransparency = 1
  24. skidderLabel.Parent = frame
  25.  
  26. -- Create and configure the CountdownLabel
  27. local countdownLabel = Instance.new("TextLabel")
  28. countdownLabel.Size = UDim2.new(1, 0, 0.5, 0)
  29. countdownLabel.Position = UDim2.new(0, 0, 0.5, 0)
  30. countdownLabel.TextColor3 = Color3.new(1, 1, 1) -- White color
  31. countdownLabel.TextScaled = true
  32. countdownLabel.BackgroundTransparency = 1
  33. countdownLabel.Parent = frame
  34.  
  35. -- Countdown logic
  36. local countdown = 15
  37.  
  38. -- Function to update the countdown
  39. local function updateCountdown()
  40. for i = countdown, 1, -1 do
  41. countdownLabel.Text = tostring(i)
  42. wait(1) -- Wait for 1 second
  43. end
  44. countdownLabel.Text = "Took a picture of you skid twink" -- Clear the text after the countdown
  45. print("Ended") -- Print "Ended" after the countdown
  46. end
  47.  
  48. -- Start the countdown when the script runs
  49. updateCountdown()
  50.  
Advertisement
Add Comment
Please, Sign In to add comment