I know this is probably really easy to do, but I want to have this brick go to the position of the player. Code V
local player = game.Players.LocalPlayer local playerpos = game.Players.LocalPlayer.Character.Torso.Position script.Parent.Position = playerpos wait(0.5)
Don't use torso as the position. Always use HumanoidRootPart.
local player = game.Players.LocalPlayer local playerpos = game.Players.LocalPlayer.Character.HumanoidRootPart workspace["PART NAME HERE"].Position = Vector3.new(playerpos) wait(0.5)
Put that inside a local script inside StarterGui.
Here ya go!
local player = game.Players.LocalPlayer local playerpos = game.Players.LocalPlayer.Character.Torso.Position script.Parent.Position = Vector3.new(playerpos) wait(0.5)