if not game.PlaceId == 6312903733 then game:GetService("StarterGui"):SetCore("SendNotification",{ Title = "RGD AutoPlay", Text = "You must be in a match for this script to work." }) return else game:GetService("StarterGui"):SetCore("SendNotification",{ Title = "RGD AutoPlay", Text = "Activated! Thank you for using my script!" }) print("RGD AutoPlay by @prefire") end local player = game.Players.LocalPlayer local function killAll() for _, v in workspace:GetChildren() do if v:IsA("Model") and v.Name == "Room" then if v:FindFirstChild("Enemies") then for _, v in v.Enemies:GetChildren() do local hum = v:FindFirstChildOfClass("Humanoid") if hum then hum.Health = 0 if v.Name == "Hunter Droid 3.0" then player.Character.HumanoidRootPart.CFrame = v.Head.CFrame end else if v:FindFirstChildOfClass("ClickDetector") then coroutine.wrap(function() player.Character.HumanoidRootPart.CFrame = v.CFrame task.wait(0.5) fireclickdetector(v:FindFirstChildOfClass("ClickDetector")) end)() end if v.Name == "SlotMachine" then if v:FindFirstChild("Handle") then if v:FindFirstChild("Ball") then if v:FindFirstChild("Attachment") then if v:FindFirstChild("ProximityPrompt") then fireproximityprompt(v:FindFirstChild("ProximityPrompt")) end end end end end if v.Name == "Bat Wing" then player.Character.HumanoidRootPart.CFrame = v.Handle.CFrame end end end end for _, v in v:GetChildren() do if v.Name == "Crystal" then local hum = v:FindFirstChildOfClass("Humanoid") if hum then hum.Health = 0 end end if v.Name == "Circuit" or v.Name == "BigCircuit" then v.CanCollide = false v.CFrame = player.Character.HumanoidRootPart.CFrame end if v.Name == "Laser" then v.CanTouch = false end end end end for _, v in workspace.PassiveDroids:GetChildren() do if v.Name == "Lucky Droid" or v.Name == "Friendly Droid" then local hum = v:FindFirstChildOfClass("Humanoid") if hum then hum.Health = 0 end end end end local function bringCircuits() for _, v in workspace:GetChildren() do if v.Name == "Circuit" or v.Name == "BigCircuit" then v.CanCollide = false v.CFrame = player.Character.HumanoidRootPart.CFrame end end end while task.wait(0.5) do killAll() bringCircuits() end