Cra-Z-Gaming

Roblox Islands Anniversary Items - SCRIPT

Jan 4th, 2025 (edited)
44
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.79 KB | None | 0 0
  1. --FREE THIRD ANNIVERSARY ITEMS, CAKE, CLETUS PLUSHY, Dog Spawn Egg, ALSO FREE Instruments--
  2. -- this whole script was made by AI (I tweaked parts to make it better)--
  3.  
  4. --IMPORTANT<<<< if you want MULTIPLE cakes, you need to give the cakes to your main from an alt then join another profile--
  5.  
  6. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  7.  
  8. -- Locate the RedeemAnniversary event
  9. local redeemAnniversaryEvent = ReplicatedStorage:FindFirstChild("rbxts_include")
  10.     and ReplicatedStorage.rbxts_include:FindFirstChild("node_modules")
  11.     and ReplicatedStorage.rbxts_include.node_modules:FindFirstChild("@rbxts")
  12.     and ReplicatedStorage.rbxts_include.node_modules["@rbxts"]:FindFirstChild("net")
  13.     and ReplicatedStorage.rbxts_include.node_modules["@rbxts"].net.out._NetManaged:FindFirstChild("RedeemAnniversary")
  14.  
  15. -- Locate the RedeemFreeInstruments event
  16. local redeemFreeInstrumentsEvent = ReplicatedStorage:FindFirstChild("rbxts_include")
  17.     and ReplicatedStorage.rbxts_include:FindFirstChild("node_modules")
  18.     and ReplicatedStorage.rbxts_include.node_modules:FindFirstChild("@rbxts")
  19.     and ReplicatedStorage.rbxts_include.node_modules["@rbxts"]:FindFirstChild("net")
  20.     and ReplicatedStorage.rbxts_include.node_modules["@rbxts"].net.out._NetManaged:FindFirstChild("RedeemFreeInstruments")
  21.  
  22. if redeemAnniversaryEvent and redeemAnniversaryEvent:IsA("RemoteEvent") and redeemFreeInstrumentsEvent and redeemFreeInstrumentsEvent:IsA("RemoteEvent") then
  23.     print("Both events found. Starting spam...")
  24.    
  25.     -- Fire both events continuously
  26.     while task.wait(0.00000000000001) do -- Adjust the delay as needed
  27.         redeemAnniversaryEvent:FireServer()
  28.         redeemFreeInstrumentsEvent:FireServer()
  29.     end
  30. else
  31.     print("One or both events not found or invalid.")
  32. end
  33.  
  34.  
Advertisement
Add Comment
Please, Sign In to add comment