I need help to this. Please if you know please tell me. And if you want to ask a question about my question then I will answer it :)
So you can get the position of the part by:
print(workspace.Position) -- This will print out the position of the part in workspace
So what you mean is if you add a vector3 position to a part you check the new position and get the part that if in that new position Here what i can do
local Part = workspace.Part -- Change this if needed local Part2 local Target = Part.Position + Vector3.new(0,10,0) for i,v in pairs(workspace.Model:GetChildren()) do -- Change the model name if v.Position == Vector3.new(Target) then Part2 = v print("Found! Yay") else print("Not Found") end end
Hope this helped
How you get a bricks position, you simply just need to get the Parts Position. This is a basic function of ROBLOX Studio.
--[[Made By MillerrIAm]]-- --[Server Variables]-- local Part = script.Parent local PartPosition = Part.Position --[Main Script]-- print(PartPosition)