local ReplicatedStorage = game:GetService("ReplicatedStorage")
local BrainrotsFolder = ReplicatedStorage:WaitForChild("BrainrotsRarity")
local RemoteEvent = ReplicatedStorage
:WaitForChild("Packages")
:WaitForChild("_Index")
:WaitForChild("knit")
:WaitForChild("Services")
:WaitForChild("IndexService")
:WaitForChild("RE")
:WaitForChild("TouchedBrainrot")
local function fireAllBrainrots()
local targetName = "Din Dun Ma Din"
RemoteEvent:FireServer(targetName)
task.wait(0.1)
local items = BrainrotsFolder:GetChildren()
for _, item in ipairs(items) do
if item:IsA("BasePart") or item:IsA("Model") or item:IsA("Folder") then
local brainrotName = item.Name
local args = {
[1] = brainrotName
}
RemoteEvent:FireServer(unpack(args))
task.wait(0.1)
end
end
end
fireAllBrainrots()
Comments
No comments yet
Be the first to share your thoughts!