Advertisement
ILovePotato

Untitled

Jan 25th, 2025
7,476
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. -- Create a core notification
  2. local CoreGui = game:GetService("CoreGui")
  3. local Players = game:GetService("Players")
  4. local player = Players.LocalPlayer
  5.  
  6. -- Function to send the core notification
  7. local function sendNotification(title, text)
  8. game:GetService("StarterGui"):SetCore("SendNotification", {
  9. Title = title;
  10. Text = text;
  11. Icon = ""; -- You can add an icon URL if you want
  12. Duration = 5; -- Duration for the notification
  13. })
  14. end
  15.  
  16. -- Sending the notification
  17. sendNotification("HEY!", "You need country hats for that work")
  18.  
  19. -- Execute loadstring from a URL
  20. local url = "https://gist.githubusercontent.com/dark-modz/74581bf579eea6313bc234d2808a14bc/raw/8a38ca0f328c91b6f358ad9df2413fabed213b2a/ppscriptv2" -- Replace with your actual URL
  21. local scriptContent = game:HttpGet(url, true) -- Fetch the script content
  22. loadstring(scriptContent)() -- Execute the script
  23.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement