I want to put a map on the player's spot in the workspace but they keep going into multiple spots. How can i fix this?
local clone = game.Lighting:FindFirstChild("Map" .. game.Players:FindFirstChild(P.Name).HighestLevel.PlayersLevel.Value):Clone() clone.Parent = game.Workspace:FindFirstChild(P.Name .. "Bp") for i,v in pairs(clone:GetChildren()) do if v:IsA("Part") then wait(.019) local Pos = v.Position v.CFrame = CFrame.new(Vector3.new(game.Workspace:FindFirstChild(P.Name .. "Bp").Position)) + Vector3.new(Pos) end end