-- [[ 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 Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local VirtualUser = game:GetService("VirtualUser") local LocalPlayer = Players.LocalPlayer local window = Rayfield:CreateWindow({ name = "+1 Mog Evolution", subtitle = "Credits to ChatGPT", sidebarLayout = true, }) local tab = window:CreateTab({ name = "Home", icon = 93364949241311 }) -- AUTO CLICK local AutoClick = false local ClickEvent = ReplicatedStorage.PowerRemotes.ClickPower tab:CreateToggle({ name = "Auto Click", callback = function(value) AutoClick = value if value then task.spawn(function() while AutoClick do ClickEvent:FireServer() task.wait() end end) end end, }) -- AUTO REBIRTH local AutoRebirth = false local RebirthEvent = ReplicatedStorage.RebirthRemotes.DoRebirth tab:CreateToggle({ name = "Auto Rebirth", callback = function(value) AutoRebirth = value if value then task.spawn(function() while AutoRebirth do RebirthEvent:FireServer() task.wait(0.5) end end) end end, }) -- AUTO WIN local AutoWin = false local WinPart = workspace.WinPads.Normal["15"].Win tab:CreateToggle({ name = "Auto Win", callback = function(value) AutoWin = value if value then task.spawn(function() while AutoWin do local character = LocalPlayer.Character if character and WinPart then character:PivotTo( WinPart.CFrame + Vector3.new(0, 3, 0) ) end task.wait(1) end end) end end, }) -- WALKSPEED local WalkSpeedValue = 16 tab:CreateSlider({ name = "WalkSpeed", range = {16, 100}, increment = 1, suffix = " Speed", currentValue = 16, callback = function(value) WalkSpeedValue = value local character = LocalPlayer.Character local humanoid = character and character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.WalkSpeed = value end end, }) -- JUMPPOWER local JumpPowerValue = 50 tab:CreateSlider({ name = "JumpPower", range = {50, 150}, increment = 1, suffix = " Power", currentValue = 50, callback = function(value) JumpPowerValue = value local character = LocalPlayer.Character local humanoid = character and character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.UseJumpPower = true humanoid.JumpPower = value end end, }) -- RESTORE AFTER RESPAWN LocalPlayer.CharacterAdded:Connect(function(character) local humanoid = character:WaitForChild("Humanoid") task.wait(0.2) humanoid.WalkSpeed = WalkSpeedValue humanoid.UseJumpPower = true humanoid.JumpPower = JumpPowerValue end) -- ANTI AFK local AntiAFK = false tab:CreateToggle({ name = "Anti-AFK", callback = function(value) AntiAFK = value if value then task.spawn(function() while AntiAFK do VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new()) task.wait(60) end end) end end, })