How do i make a custom jump button with gui

i don’t know how to find custom jump button with GUI

thanks

This should be in #help-and-feedback:scripting-support

Make a textbutton and add a local script in it:

script.Parent.MouseButton1Click:Connect(function()
  game.Players.LocalPlayer.Character.Humanoid.Jump = true
end)

Thank you so much! I really needed it for my game

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.