-- [[ 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/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "FemboyWARE", LoadingTitle = "Loading FemboyWARE...", LoadingSubtitle = "by FemboyWARE", ConfigurationSaving = { Enabled = true, FolderName = "FemboyWAREConfig", FileName = "Configuration" }, Discord = { Enabled = false }, KeySystem = true, KeySettings = { Title = "FemboyWARE Key System", Subtitle = "Enter Key to Access", Note = "Key is FemboyWAREONTOP", FileName = "FemboyWAREKey", SaveKey = true, GrabKeyFromSite = false, Key = {"FemboyWAREONTOP"} } }) local Players = game:GetService("Players") local RunService = game:GetService("RunService") local ReplicatedStorage = game:GetService("ReplicatedStorage") local UserInputService = game:GetService("UserInputService") local VirtualUser = game:GetService("VirtualUser") local TeleportService = game:GetService("TeleportService") local LocalPlayer = Players.LocalPlayer local noclipEnabled = false local infJumpEnabled = false local autoFarmEnabled = false local autoHatchEnabled = false local autoCollectEnabled = false local selectedEgg = "Basic Egg" local MainTab = Window:CreateTab("Main / Auto", 4483362458) local MovementTab = Window:CreateTab("Player & Movement", 4483362458) local VisualsTab = Window:CreateTab("ESP & Visuals", 4483362458) local SettingsTab = Window:CreateTab("Utilities", 4483362458) MainTab:CreateSection("Autofarm Controls") MainTab:CreateToggle({ Name = "Auto-Farm / Tap", CurrentValue = false, Flag = "AutoFarmToggle", Callback = function(Value) autoFarmEnabled = Value if autoFarmEnabled then task.spawn(function() while autoFarmEnabled do local tapRemote = ReplicatedStorage:FindFirstChild("TapRemote", true) if tapRemote and tapRemote:IsA("RemoteEvent") then tapRemote:FireServer() end task.wait(0.1) end end) end end, }) MainTab:CreateToggle({ Name = "Auto-Collect Drops", CurrentValue = false, Flag = "AutoCollectToggle", Callback = function(Value) autoCollectEnabled = Value if autoCollectEnabled then task.spawn(function() while autoCollectEnabled do local hrp = LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") local dropsFolder = workspace:FindFirstChild("Drops") or workspace:FindFirstChild("Coins") if hrp and dropsFolder then for _, drop in ipairs(dropsFolder:GetChildren()) do if drop:IsA("BasePart") then drop.CFrame = hrp.CFrame end end end task.wait(0.2) end end) end end, }) MainTab:CreateSection("Egg Hatching") MainTab:CreateDropdown({ Name = "Select Egg", Options = {"Basic Egg", "Rare Egg", "Epic Egg", "Legendary Egg"}, CurrentOption = {"Basic Egg"}, MultipleOptions = false, Flag = "EggDropdown", Callback = function(Option) selectedEgg = Option[1] end, }) MainTab:CreateToggle({ Name = "Auto-Hatch Egg", CurrentValue = false, Flag = "AutoHatchToggle", Callback = function(Value) autoHatchEnabled = Value if autoHatchEnabled then task.spawn(function() while autoHatchEnabled do local hatchRemote = ReplicatedStorage:FindFirstChild("HatchEgg", true) if hatchRemote and hatchRemote:IsA("RemoteFunction") then hatchRemote:InvokeServer(selectedEgg, 1) end task.wait(0.5) end end) end end, }) MainTab:CreateButton({ Name = "Equip Best Items/Pets", Callback = function() local equipRemote = ReplicatedStorage:FindFirstChild("EquipBest", true) or ReplicatedStorage:FindFirstChild("EquipBestPets", true) if equipRemote then if equipRemote:IsA("RemoteEvent") then equipRemote:FireServer() elseif equipRemote:IsA("RemoteFunction") then equipRemote:InvokeServer() end end end, }) MovementTab:CreateSection("Character Enhancements") MovementTab:CreateToggle({ Name = "Noclip", CurrentValue = false, Flag = "NoclipToggle", Callback = function(Value) noclipEnabled = Value end, }) MovementTab:CreateToggle({ Name = "Infinite Jump", CurrentValue = false, Flag = "InfJumpToggle", Callback = function(Value) infJumpEnabled = Value end, }) MovementTab:CreateSlider({ Name = "WalkSpeed", Range = {16, 250}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "WalkSpeedSlider", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = Value end end, }) MovementTab:CreateSlider({ Name = "JumpPower", Range = {50, 500}, Increment = 5, Suffix = "Power", CurrentValue = 50, Flag = "JumpPowerSlider", Callback = function(Value) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then local hum = LocalPlayer.Character:FindFirstChildOfClass("Humanoid") hum.UseJumpPower = true hum.JumpPower = Value end end, }) VisualsTab:CreateSection("Player ESP") VisualsTab:CreateButton({ Name = "Enable Player Highlight ESP", Callback = function() for _, player in ipairs(Players:GetPlayers()) do if player ~= LocalPlayer and player.Character then if not player.Character:FindFirstChild("ESPHighlight") then local highlight = Instance.new("Highlight") highlight.Name = "ESPHighlight" highlight.FillColor = Color3.fromRGB(0, 170, 255) highlight.OutlineColor = Color3.fromRGB(255, 255, 255) highlight.Parent = player.Character end end end end, }) VisualsTab:CreateButton({ Name = "Disable Egg Cutscenes", Callback = function() local playerGui = LocalPlayer:FindFirstChildOfClass("PlayerGui") if playerGui then for _, gui in ipairs(playerGui:GetChildren()) do if gui.Name:lower():find("hatch") or gui.Name:lower():find("cutscene") then gui.Enabled = false end end end end, }) SettingsTab:CreateSection("System Options") SettingsTab:CreateButton({ Name = "Rejoin Server", Callback = function() TeleportService:TeleportToPlaceInstance(game.PlaceId, game.JobId, LocalPlayer) end, }) SettingsTab:CreateButton({ Name = "Server Hop (New Server)", Callback = function() TeleportService:Teleport(game.PlaceId, LocalPlayer) end, }) RunService.Stepped:Connect(function() if noclipEnabled and LocalPlayer.Character then for _, part in ipairs(LocalPlayer.Character:GetDescendants()) do if part:IsA("BasePart") and part.CanCollide then part.CanCollide = false end end end end) UserInputService.JumpRequest:Connect(function() if infJumpEnabled and LocalPlayer.Character then local humanoid = LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end end) LocalPlayer.Idled:Connect(function() VirtualUser:CaptureController() VirtualUser:ClickButton2(Vector2.new()) end) Rayfield:Notify({ Title = "FemboyWARE Loaded!", Content = "FemboyWARE initialized successfully.", Duration = 5, Image = 4483362458, })