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?
for i = 0,100,1 do script.Parent:TranslateBy(Vector3.new(i,0,0)) end