How would Add/Times a Vector3 or UDim/2 by the lenth of a table?
kk = {}
I tried:
function touch(plr)
h = instance.new("TextLabel" game.Players.GetPlayerFromCharacter(plr).PlayerGui.ScreenGui)
h.Text = (table.concat(kk))
h.Size = UDim2.new(1,0, .15,0)
h.Position = UDim2.new(0,0, 1,0) * UDim2.new(0,0 (#kk),0)
end
script.Parent.Touched:connect(touch)
It errors and says "Exspected UDim2 value, got userdata"
Any one know how to fix this? |