Basically I am trying to create a UDIM2 value that takes the X value of another UDIM2 and sets the Y value too 1. Only problem is it just doesnt work AT ALL!!
Heres my code:
local po = UDim2.new(math.random(5,86)/100,0,math.random(5,86)/100,0)
local finish = UDim2.new(po.X,1,0) -- this should set the UDIM2 value too 2 right???
print(finish)