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
Jacoberz4
(DataFramework)
April 20, 2024, 8:41am
#3
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
Jacoberz4
(DataFramework)
April 20, 2024, 8:42am
#6
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
system
(system)
Closed
May 4, 2024, 8:47am
#9
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.