Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --FREE THIRD ANNIVERSARY ITEMS, CAKE, CLETUS PLUSHY, Dog Spawn Egg, ALSO FREE Instruments--
- -- this whole script was made by AI (I tweaked parts to make it better)--
- --IMPORTANT<<<< if you want MULTIPLE cakes, you need to give the cakes to your main from an alt then join another profile--
- local ReplicatedStorage = game:GetService("ReplicatedStorage")
- -- Locate the RedeemAnniversary event
- local redeemAnniversaryEvent = ReplicatedStorage:FindFirstChild("rbxts_include")
- and ReplicatedStorage.rbxts_include:FindFirstChild("node_modules")
- and ReplicatedStorage.rbxts_include.node_modules:FindFirstChild("@rbxts")
- and ReplicatedStorage.rbxts_include.node_modules["@rbxts"]:FindFirstChild("net")
- and ReplicatedStorage.rbxts_include.node_modules["@rbxts"].net.out._NetManaged:FindFirstChild("RedeemAnniversary")
- -- Locate the RedeemFreeInstruments event
- local redeemFreeInstrumentsEvent = ReplicatedStorage:FindFirstChild("rbxts_include")
- and ReplicatedStorage.rbxts_include:FindFirstChild("node_modules")
- and ReplicatedStorage.rbxts_include.node_modules:FindFirstChild("@rbxts")
- and ReplicatedStorage.rbxts_include.node_modules["@rbxts"]:FindFirstChild("net")
- and ReplicatedStorage.rbxts_include.node_modules["@rbxts"].net.out._NetManaged:FindFirstChild("RedeemFreeInstruments")
- if redeemAnniversaryEvent and redeemAnniversaryEvent:IsA("RemoteEvent") and redeemFreeInstrumentsEvent and redeemFreeInstrumentsEvent:IsA("RemoteEvent") then
- print("Both events found. Starting spam...")
- -- Fire both events continuously
- while task.wait(0.00000000000001) do -- Adjust the delay as needed
- redeemAnniversaryEvent:FireServer()
- redeemFreeInstrumentsEvent:FireServer()
- end
- else
- print("One or both events not found or invalid.")
- end
Advertisement
Add Comment
Please, Sign In to add comment