Multiple CAS buttons not showing

So when I try to add multiple CAS (contextactionservice) buttons they don’t appear.
But when I add 1 it appears.

Any problems related to this?

if not (UIS.KeyboardEnabled) then
	local water = CAS:BindAction("Water",water,true,"t")
	CAS:SetPosition("Water",UDim2.new(0.72,-25,0.20,-25))
	CAS:SetTitle("Water","Water")
	
	local fire = CAS:BindAction("Fire",fire,true,"t")
	CAS:SetPosition("Fire",UDim2.new(0.72,-25,0.25,-25))
	CAS:SetTitle("Fire","Fire")
end
if not (UIS.KeyboardEnabled) then

Is this condition evaluating to ‘true’ or ‘false’? Try printing inside the if block.

It’s false, because I’m testing on mobile.

When I remove the prints, It becomes true?

I can only assume that the UDim2 values you’re using are causing the buttons to overlap eachother.

Try differing the offset components of the two UDim2 values instead of their scale components.

I’m on the mobile screen on the “test” tab but it still says true.