# Frightz Hub (Rayfield UI) local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Frightz Hub", LoadingTitle = "Frightz Hub", LoadingSubtitle = "by BeauMcgooBlox", ConfigurationSaving = { Enabled = true, FolderName = "FrightzHub", FileName = "Settings" }, Discord = { Enabled = false, }, KeySystem = false, }) local MainTab = Window:CreateTab("Main", 4483362458) local PlayerTab = Window:CreateTab("Player", 4483362458) local TrollTab = Window:CreateTab("Fun", 4483362458) -- VARIABLES local player = game.Players.LocalPlayer local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:WaitForChild("Humanoid") -- WALK SPEED PlayerTab:CreateSlider({ Name = "WalkSpeed", Range = {16, 300}, Increment = 1, Suffix = "Speed", CurrentValue = 16, Flag = "SpeedSlider", Callback = function(Value) humanoid.WalkSpeed = Value end, }) -- JUMP POWER PlayerTab:CreateSlider({ Name = "JumpPower", Range = {50, 300}, Increment = 1, Suffix = "Jump", CurrentValue = 50, Flag = "JumpSlider", Callback = function(Value) humanoid.JumpPower = Value end, }) -- INFINITE JUMP local InfiniteJumpEnabled = false PlayerTab:CreateToggle({ Name = "Infinite Jump", CurrentValue = false, Flag = "InfJump", Callback = function(Value) InfiniteJumpEnabled = Value end, }) game:GetService("UserInputService").JumpRequest:Connect(function() if InfiniteJumpEnabled then humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end) -- FLY SCRIPT PlayerTab:CreateButton({ Name = "Fly", Callback = function() loadstring(game:HttpGet("https://pastebin.com/raw/6RQGb7nY"))() end, }) -- TELEPORT UP MainTab:CreateButton({ Name = "Teleport Up", Callback = function() local hrp = character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = hrp.CFrame + Vector3.new(0, 50, 0) end end, }) -- RESET CHARACTER MainTab:CreateButton({ Name = "Reset Character", Callback = function() character:BreakJoints() end, }) -- GOD MODE ATTEMPT MainTab:CreateButton({ Name = "God Mode", Callback = function() humanoid.MaxHealth = math.huge humanoid.Health = math.huge end, }) -- SPIN BOT TrollTab:CreateToggle({ Name = "Spin Bot", CurrentValue = false, Flag = "Spinbot", Callback = function(Value) getgenv().Spinbot = Value while getgenv().Spinbot do task.wait() local hrp = character:FindFirstChild("HumanoidRootPart") if hrp then hrp.CFrame = hrp.CFrame * CFrame.Angles(0, math.rad(30), 0) end end end, }) -- FLOAT TrollTab:CreateButton({ Name = "Float", Callback = function() local hrp = character:FindFirstChild("HumanoidRootPart") if hrp then local bodyVelocity = Instance.new("BodyVelocity") bodyVelocity.Velocity = Vector3.new(0, 25, 0) bodyVelocity.MaxForce = Vector3.new(999999,999999,999999) bodyVelocity.Parent = hrp end end, }) -- BRIGHTNESS MainTab:CreateButton({ Name = "Full Bright", Callback = function() game.Lighting.Brightness = 10 game.Lighting.ClockTime = 14 game.Lighting.FogEnd = 100000 game.Lighting.GlobalShadows = false end, }) -- NOCLIP local noclip = false PlayerTab:CreateToggle({ Name = "Noclip", CurrentValue = false, Flag = "NoclipToggle", Callback = function(Value) noclip = Value end, }) game:GetService("RunService").Stepped:Connect(function() if noclip then for _, part in pairs(character:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) -- AUTO HEAL MainTab:CreateToggle({ Name = "Auto Heal", CurrentValue = false, Flag = "AutoHeal", Callback = function(Value) getgenv().AutoHeal = Value while getgenv().AutoHeal do task.wait(1) if humanoid.Health < humanoid.MaxHealth then humanoid.Health = humanoid.MaxHealth end end end, }) -- ESP MainTab:CreateButton({ Name = "Simple ESP", Callback = function() for _, v in pairs(game.Players:GetPlayers()) do if v ~= player then local highlight = Instance.new("Highlight") highlight.Parent = v.Character highlight.FillTransparency = 0.5 highlight.OutlineTransparency = 0 end end end, }) Rayfield:Notify({ Title = "Frightz Hub Loaded", Content = "All OP functions loaded successfully!", Duration = 6.5, Image = 4483362458, }) ``` ## Features * WalkSpeed Slider * JumpPower Slider * Infinite Jump * Fly * Teleport Up * God Mode * Spin Bot * Float * Full Bright * Noclip * Auto Heal * ESP * Reset Character