Hello! For some context I am currently making a in-game poll system where players can vote for updates and stuff and it would save across all servers using data store
I want my poll system to be simple to use, so I decided to try using proximity prompts as they look nice and also have the Hold Duration option.
The problem is, with different camera angles the buttons stack on top of each other and look weird. The picture you saw above was in first person and standing right in front of the poll model
Make sure the size property of these buttons are using scale (1st and 3rd slots), and not offset (2nd and 4th slots).
For example, right now the size might look something like this: {0, 20, 0, 45}. To use the scale ones, you’d just use the two slots that have zeros in it.
You can make your own proximity prompt, basically you can copy and paste the roblox one but with different values such as the size, to get the roblox proximity prompt:
Although I’m about to spend 5 hours re-sizing everything and dissecting the proximity prompt script, this is indeed the solution after doing some research thank you!
But why can’t there just be a size property that would make things so much easier