local player = game:GetService("Players").LocalPlayer local coreGui = game:GetService("CoreGui") if coreGui:FindFirstChild("Midn1ghtkidd") then coreGui.Midn1ghtkidd:Destroy() end local screenGui = Instance.new("ScreenGui") screenGui.Name = "Midn1ghtkidd" screenGui.ResetOnSpawn = false screenGui.Parent = coreGui -- Important for executors local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 200, 0, 100) frame.Position = UDim2.new(0, 50, 0, 50) frame.BackgroundColor3 = Color3.fromRGB(40, 40, 40) frame.Draggable = true frame.Active = true frame.Selectable = true frame.Parent = screenGui local button = Instance.new("TextButton") button.Size = UDim2.new(0, 180, 0, 40) button.Position = UDim2.new(0, 10, 0, 30) button.BackgroundColor3 = Color3.fromRGB(100, 100, 255) button.Text = "Super Jump" button.TextColor3 = Color3.fromRGB(255, 255, 255) button.Font = Enum.Font.SourceSansBold button.TextSize = 20 button.Parent = frame button.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() if character:FindFirstChild("Humanoid") then character.Humanoid.JumpPower = 200 character.Humanoid:ChangeState(Enum.HumanoidStateType.Jumping) end end)