local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))()
local Window = Rayfield:CreateWindow({
Name = "+1 Height Per Jump",
LoadingTitle = "Hello",
LoadingSubtitle = "Credit By XDSCRIPT",
ConfigurationSaving = {
Enabled = false
}
})
local Tab = Window:CreateTab("Inf", 4483362458)
local Players = game:GetService("Players")
local UserInputService = game:GetService("UserInputService")
local Player = Players.LocalPlayer
local JumpEnabled = false
local function GetHumanoid()
local Character = Player.Character or Player.CharacterAdded:Wait()
return Character:FindFirstChildOfClass("Humanoid")
end
-- Infinite Jump
UserInputService.JumpRequest:Connect(function()
if JumpEnabled then
local Humanoid = GetHumanoid()
if Humanoid then
Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
end
end
end)
-- Infinite Jump + Auto Jump 0.1 Detik
Tab:CreateToggle({
Name = "Auto Jump[Inf]",
CurrentValue = false,
Callback = function(Value)
JumpEnabled = Value
if Value then
task.spawn(function()
while JumpEnabled do
local Humanoid = GetHumanoid()
if Humanoid then
Humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
end
task.wait(0.1)
end
end)
end
end,
})