Description
A typical Infinite Jump script works in most Roblox games that use the standard Roblox character (Humanoid), including many experiences such as:
- Brookhaven 🏡
- Blox Fruits 🏴☠️
- Grow a Garden 🌱
- Fisch 🎣
- Blade Ball ⚔️
- Pet Simulator 99 🐾
- Natural Disaster Survival 🌪️
- Many other games with the default character system.
Features
Compatible Executors
Script
-- LocalScript (StarterPlayerScripts ou dentro de um ScreenGui)
local Players = game:GetService("Players")
local player = Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
-- Criar GUI
local gui = Instance.new("ScreenGui")
gui.Name = "MeuMenu"
gui.ResetOnSpawn = false
gui.Parent = playerGui
-- Botão para abrir/fechar
local toggle = Instance.new("TextButton")
toggle.Size = UDim2.new(0, 120, 0, 40)
toggle.Position = UDim2.new(0, 20, 0, 20)
toggle.Text = "Abrir Menu"
toggle.Parent = gui
-- Menu
local frame = Instance.new("Frame")
frame.Size = UDim2.new(0, 250, 0, 180)
frame.Position = UDim2.new(0.5, -125, 0.5, -90)
frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40)
frame.Visible = false
frame.Active = true
frame.Draggable = true -- Permite mover o menu
frame.Parent = gui
-- Título
local title = Instance.new("TextLabel")
title.Size = UDim2.new(1, 0, 0, 35)
title.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
title.Text = "Meu Menu"
title.TextColor3 = Color3.new(1,1,1)
title.Parent = frame
-- Exemplo de botão
local botao = Instance.new("TextButton")
botao.Size = UDim2.new(0.8, 0, 0,
No comments yet. Be the first!