Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Fake Donation Script
- local Players = game:GetService("Players")
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- -- Function to display a fake donation message
- local function showFakeDonation(donorName, amount)
- -- You can customize this to display on GUI or chat
- -- Example: send a chat message
- local message = donorName .. " donated " .. amount .. " Robux! Thank you!"
- -- Send to all players chat
- for _, player in pairs(Players:GetPlayers()) do
- player:SendNotification({
- Title = "Donation",
- Text = message,
- Duration = 5
- })
- end
- end
- -- Example usage
- wait(3) -- wait 3 seconds after game starts
- showFakeDonation("CoolPlayer123", 50)
- wait(10)
- showFakeDonation("PlayerXYZ", 100)
Add Comment
Please, Sign In to add comment