Why wont it set the postition of the part

when it spawns, it wont move to the player. just stays at 0,0,0

BLS.MouseButton1Click:Connect(function()
	local NewBlock = BL:Clone()
	NewBlock.Parent = Spawned
	NewBlock.Position = UDim2.new(torso.Position)
end)

Im bad at scripting, idk whats wrong

(torso is the players torso part)

3 Dimensional Cooridinates must be a Vector3

NewBlock.Position = torso.Position

You’re using a UDim2 data type which is used for UI elements only, Vector3 is suitable for this. But, torso.Position is already a Vector3 so
it only needs to be NewBlock.Position = torso.Position

Now its sayimng this

Players.Vortexuel560.PlayerGui.SpawnMenuWindow.SM.Spawner:25: attempt to index nil with ‘Position’

oop mb use @Jacoberz4 method since Position is already a Vector3

torso.Position is already a Vector3, you don’t need to create a new one

i just tried the new solution, it gives the same error

NVM, the issue was the torso was nil


fixed it

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.