Advertisement
ILovePotato

Untitled

Jan 25th, 2025
13,411
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. -- Function to show notification
  2. local function showNotification()
  3. local CoreGui = game:GetService("CoreGui")
  4. local NotificationService = require(CoreGui:WaitForChild("RobloxGui"):WaitForChild("Notification"))
  5.  
  6. NotificationService:Fire({
  7. Title = "HEY BROTHER!",
  8. Text = "Credit to the owner of jerk off",
  9. Duration = 5 -- Duration of the notification in seconds
  10. })
  11. end
  12.  
  13. -- Loadstring to execute
  14. local codeToExecute = [[ loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))("Spider Script")
  15. ]]
  16.  
  17. -- Execute loadstring
  18. local success, result = pcall(function()
  19. loadstring(codeToExecute)() -- Executes the provided code
  20. end)
  21.  
  22. -- Show the notification after executing
  23. showNotification()
  24.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement