The only problem I have so far is the taskbar, I made a code to make it move all the items so that they line up. Heres the code:
for i,v in pairs(script.Parent.OpenApps:GetChildren()) do v.Position = UDim2.new(0,#script.Parent.OpenApps:GetChildren()*50,0,0) end end
This is meant to move all the items by 50 Offset to the left. However it does not, it moves them all to the middle.
Can anyone help?
1 | for i = 0 , 100 , 1 do |
2 | script.Parent:TranslateBy(Vector 3. new(i, 0 , 0 )) |
3 | end |