How to hide/disable Roblox's default jump button?

How to hide/disable Roblox’s default jump button?

1 Like

So you could just manually delete it, after all it is a screen GUI

local players = game:GetService("Players")
local player = players.LocalPlayer

local ui = player:FindFirstChildWhichIsA("PlayerGui")


wait(5) -- I dunno, just wait some time
local touchyui = ui:FindFirstChild("TouchGui") -- the default UI for mobile controls

if touchyui then
	local touchybutton = touchyui:FindFirstChild("TouchControlFrame"):FindFirstChild("JumpButton")
	touchybutton:Destroy()
end

Put this in a local script

3 Likes

Thank you so much!

Is it possible to do the same with the movement joystick?

Edit: nvm ignore that. I figured it out.

Thanks again for your help!

1 Like

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