Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Help positioning something correctly?

Asked by 10 years ago

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

0
You can provide some images of what you want, and what's being produced? adark 5487 — 10y
0
I have a part in workspace that the map is going to be near, and the players have their own parts so they have their own spots in the game to load maps,When i try to put it close or near to the spot they seem to get stuck inside each other and not in the same spot they are in the map(Lighting) raspyjessie 117 — 10y
0
Like I said, you'll have to take screenshots and upload them to Imgur. I don't really understand what you're talking about. adark 5487 — 10y
View all comments (2 more)
0
I still don't fully understand. Which is 'desired', and which is what's turning out? adark 5487 — 10y
0
The one that is all mashed together is the one i do not want, and the other one is the normal looking map,when the script runs it creates a squashed version of the normal one raspyjessie 117 — 10y

Answer this question