How can i deactivate or destroy the Roblox JumpButton GUI inside PlayerGui -> TouchGui without roblox reactivating it or recreating it?
Tried to disable the default Roblox jump button to replace it with a custom one, but it keeps reappearing or getting recreated.
What I already tried:
local function DisableJumpGUI()
local TouchGui = PlayerGui:WaitForChild("TouchGui")
if TouchGui then
local JumpButton = TouchGui:WaitForChild("JumpButton")
if JumpButton then
JumpButton.Visible = false
else
warn("Jump Button not found!")
end
else
warn("Touch Gui not found!")
end
end
DisableJumpGUI()
Also tried requiring the PlayerModule and overwriting both EnableButton and Create on the touchJumpController , the button stops working but stays visible on screen.
Anyone know how to fully remove it?