-- [[ 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 ]] local Rayfield = loadstring(game:HttpGet("https://sirius.menu/gen2"))() local window = Rayfield:CreateWindow({ name = "RM Killer", subtitle = "Script by PaquoteTheScripter on R.scripts", sidebarLayout = true, }) local tab = window:CreateTab({ name = "Home", icon = 93364949241311 }) local Players = game:GetService("Players") local Lighting = game:GetService("Lighting") local player = Players.LocalPlayer --// The Pest ESP local pestHighlights = {} local function createPestESP() for _, highlight in pairs(pestHighlights) do highlight:Destroy() end pestHighlights = {} for _, object in ipairs(workspace:GetDescendants()) do if object.Name == "torso" or object.Name == "Cylinder.006" then local highlight = Instance.new("Highlight") highlight.Name = "The Pest" highlight.Adornee = object highlight.FillColor = Color3.fromRGB(255, 0, 0) highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.FillTransparency = 0.5 highlight.OutlineTransparency = 0 highlight.DepthMode = Enum.HighlightDepthMode.AlwaysOnTop highlight.Parent = object table.insert(pestHighlights, highlight) end end end local function removePestESP() for _, highlight in pairs(pestHighlights) do highlight:Destroy() end pestHighlights = {} end tab:CreateToggle({ name = "The Pest", callback = function(value) if value then createPestESP() else removePestESP() end end, }) --// Refill Candy tab:CreateButton({ name = "Refill Candy", callback = function() local character = player.Character or player.CharacterAdded:Wait() local root = character:FindFirstChild("HumanoidRootPart") if not root then return end local originalCFrame = root.CFrame root.CFrame = CFrame.new(-65, 54, 297) task.wait(3) root.CFrame = CFrame.new(-84, 37, 264) task.wait(3) root.CFrame = originalCFrame end, }) --// Refill Batteries tab:CreateButton({ name = "Refill Batteries", callback = function() local character = player.Character or player.CharacterAdded:Wait() local root = character:FindFirstChild("HumanoidRootPart") if not root then return end local originalCFrame = root.CFrame root.CFrame = CFrame.new(-32, 37, 184) task.wait(2) root.CFrame = originalCFrame end, }) --// Fullbright local originalBrightness = Lighting.Brightness local originalClockTime = Lighting.ClockTime local originalAmbient = Lighting.Ambient local originalOutdoorAmbient = Lighting.OutdoorAmbient local originalColorShiftTop = Lighting.ColorShift_Top local originalColorShiftBottom = Lighting.ColorShift_Bottom tab:CreateToggle({ name = "Fullbright", callback = function(value) if value then Lighting.Brightness = 2 Lighting.ClockTime = 14 Lighting.Ambient = Color3.fromRGB(255, 255, 255) Lighting.OutdoorAmbient = Color3.fromRGB(255, 255, 255) Lighting.ColorShift_Top = Color3.fromRGB(255, 255, 255) Lighting.ColorShift_Bottom = Color3.fromRGB(255, 255, 255) else Lighting.Brightness = originalBrightness Lighting.ClockTime = originalClockTime Lighting.Ambient = originalAmbient Lighting.OutdoorAmbient = originalOutdoorAmbient Lighting.ColorShift_Top = originalColorShiftTop Lighting.ColorShift_Bottom = originalColorShiftBottom end end, }) --// No Fog local originalFogStart = Lighting.FogStart local originalFogEnd = Lighting.FogEnd tab:CreateToggle({ name = "No Fog", callback = function(value) if value then Lighting.FogStart = 0 Lighting.FogEnd = 100000 else Lighting.FogStart = originalFogStart Lighting.FogEnd = originalFogEnd end end, }) --// Speedhack - WalkSpeed 30 local originalWalkSpeed = 16 tab:CreateToggle({ name = "Speedhack", callback = function(value) local character = player.Character local humanoid = character and character:FindFirstChildOfClass("Humanoid") if not humanoid then return end if value then originalWalkSpeed = humanoid.WalkSpeed humanoid.WalkSpeed = 30 else humanoid.WalkSpeed = originalWalkSpeed end end, })