-- [[ 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 ]] -- 122, -1906, -2463 abyssal local RunService = game:GetService("RunService") local Players = game:GetService("Players") local localplayer = Players.LocalPlayer local VirtualInputManager = game:GetService("VirtualInputManager") local desired local function teleportPlayer(TARGET_CFRAME) -- Ensure the player's character exists in the workspace local character = localplayer.Character if character and character:FindFirstChild("HumanoidRootPart") then -- Instantly moves the entire character smoothly character.HumanoidRootPart.CFrame = TARGET_CFRAME end end local Rayfield = loadstring(game:HttpGet("https://sirius.menu/gen2"))() local window = Rayfield:CreateWindow({ name = "Fall For Brainrots", subtitle = "Rawified", configuration = { autoSave = true, autoLoad = true, fileName = "scals/fallbrainrot", }, }) local tab = window:CreateTab({ name = "Home", icon = 93364949241311 }) local mtab = window:CreateTab({ name = "Movement", icon = 9525534210}) tab:CreateButton({ name = "Teleport", callback = function() if desired == "Abyssal" then teleportPlayer(CFrame.new(122, -1906, -2463)) elseif desired == "Spawn" then teleportPlayer(CFrame.new(70, 14590, -2596)) elseif desired == "transendent" then teleportPlayer(CFrame.new(52, -6923, -2460)) elseif desired == "supreme" then teleportPlayer(CFrame.new(68, -11018, -2463)) end end, }) tab:CreateDropdown({ name = "positions", multiSelect = false, options = { "Spawn","Abyssal","transendent", "supreme"}, value = { "Spawn" }, callback = function(selected) desired = selected end, }) tab:CreateToggle({ name = "Always 4x", callback = function(value) RunService.RenderStepped:Connect(function(deltaTime) if value == true then local Event = game:GetService("ReplicatedStorage").BrainrotStorage.Events.Portal4xClaim Event:FireServer( "PortalCelestial" ) end end) end, }) tab:CreateToggle({ name = "Auto Collect", callback = function(value) print(value) if value == true then print("going") teleportPlayer(CFrame.new(122, -1906, -2463)) task.wait(1) for _, item in workspace.DropperParts.ItemSpawners.Abyssal:GetChildren() do local NEW_CFRAME = item.WorldPivot teleportPlayer(NEW_CFRAME) for _, child in item:GetChildren() do for _, grandkid in child:GetChildren() do if grandkid:IsA("ProximityPrompt") then task.wait(0.5) -- Forces the local player to start interacting with the prompt VirtualInputManager:SendKeyEvent(true, Enum.KeyCode.E, false, game) task.wait(1.2) VirtualInputManager:SendKeyEvent(false, Enum.KeyCode.E, false, game) NEW_CFRAME = CFrame.new(129, 12590, -1928) teleportPlayer(NEW_CFRAME) task.wait(0.5) -- Optional: To stop or cancel the simulation early -- ProximityPromptService:DoToCharacter(proximityPrompt, Enum.ProximityPromptInputType.None) end end end end end end, }) mtab:CreateSlider({ name = "Speed", range = { 16, 500 }, increment = 1, value = 16, suffix = "studs", callback = function(value) localplayer.Character.Humanoid.WalkSpeed = value end, }) workspace.DropperParts.ItemSpawners.Supreme:GetChildren()