-- [[ Rscripts Risk Notice ]] -- This script is not verified by rscripts.net. Deal with caution. -- -- Stay safe: -- • Never log in on unofficial Roblox sites or lookalike domains. -- • Real Roblox links use roblox.com (check the .com ending). -- • Treat fake Roblox login / "claim reward" pages as phishing. -- [[ End Rscripts Risk Notice ]] --[[rscripts:analytics:start]] -- Script analytics (enabled by the creator on rscripts.net). -- Runs in its own thread and cannot affect the script below. task.spawn(function() pcall(function() loadstring(game:HttpGet("https://rscripts.net/api/telemetry/v2/client.lua?s=6aa35ea64a254d38dc3d674f"))() end) end) --[[rscripts:analytics:end]] --// Services local Players = game:GetService("Players") :: Players local RunService = game:GetService("RunService") :: RunService --// Variables local Player = Players.LocalPlayer :: Player local Character = Player.Character or Player.CharacterAdded:Wait() local Humanoid = Character:WaitForChild("Humanoid") :: Humanoid local PrimaryPart = Character.PrimaryPart :: BasePart local connections = {} local ClientCollectibles = workspace:WaitForChild("ClientCollectibles") :: Folder --// Importing Library local Rayfield = loadstring(game:HttpGet("https://sirius.menu/gen2"))() --// Window Components local window = Rayfield:CreateWindow({ Name = "Mog or Die", Subtitle = "🕷️ Made by Unsecure" }) local tabs = { ["autofarm"] = window:CreateTab({ Name = "🤖 Autofarm", Icon = 0 }) } const function autofarm_callback(value : boolean) if value then connections.anti_anchored = PrimaryPart:GetPropertyChangedSignal("Anchored"):Connect(function() PrimaryPart.Anchored = false end) connections.autofarm = RunService.Heartbeat:Connect(function() for _, collectible in ClientCollectibles:GetDescendants() do if collectible:IsA("BasePart") and value then PrimaryPart.CFrame = collectible.CFrame elseif not value then break end end task.wait(1) end) else if connections.autofarm then connections["autofarm"]:Disconnect() end end end local autofarm_toggle = tabs.autofarm:CreateToggle({ Name = "🤖 Autofarm", Flag = "nil", Value = false, Callback = function(value : boolean) autofarm_callback(value) end, })