Custom Proximity GUI Button [RESOLVED]

Hello! I am looking into making a custom proximity prompt system for mobile users where they can press on the button, I already have a somewhat custom system where instead of the prompt that shows up a similar UI shows up instead with something like B for XBOX and E for PC, but with mobile is where I am struggling. Instead of any button you will have to tap it, and I don’t know if proximitypromptservice has any of that from what I have seen. Anything pointing me in the right direction to scripting this will be greatly appreciated, thank you in advance!

Example of said prompt:
image

1 Like

If you already have the knowledge of how to make a custom proximity prompt, I believe with a bit of tinkering, you will be able to get something like you want. It just takes time and evaluation.

Alright, I’ll keep that in mind. Thank you.

Ended up finding a solution, here is the code I used for it

local proxmimitypromptservice = game:GetService("ProximityPromptService")

proxmimitypromptservice.PromptShown:Connect(function(prompt, inputType)
	script.Parent.MouseButton1Click:Connect(function()
		prompt:InputHoldBegin()
	end)
end)
2 Likes

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