Kejek2b

Fake donations Roblox pls donate

May 25th, 2025
12
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. -- Fake Donation Script
  2.  
  3. local Players = game:GetService("Players")
  4. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  5.  
  6. -- Function to display a fake donation message
  7. local function showFakeDonation(donorName, amount)
  8. -- You can customize this to display on GUI or chat
  9.  
  10. -- Example: send a chat message
  11. local message = donorName .. " donated " .. amount .. " Robux! Thank you!"
  12.  
  13. -- Send to all players chat
  14. for _, player in pairs(Players:GetPlayers()) do
  15. player:SendNotification({
  16. Title = "Donation",
  17. Text = message,
  18. Duration = 5
  19. })
  20. end
  21. end
  22.  
  23. -- Example usage
  24. wait(3) -- wait 3 seconds after game starts
  25. showFakeDonation("CoolPlayer123", 50)
  26. wait(10)
  27. showFakeDonation("PlayerXYZ", 100)
Add Comment
Please, Sign In to add comment