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

How can I get the area between multiple parts?

Asked by
sad_eyez 162
6 years ago
Edited 6 years ago

I have tried quite a few methods, I am trying to get the area between multiple parts so the item I place down can only be placed n that area, and not on the outside of that area.

Here is an image of the area: pasteboard.co/HVrdQ2a.png

001local m = {}
002 
003-- Priority Variables
004local uis = game:GetService("UserInputService")
005local runService = game:GetService("RunService")
006local rs = game:GetService("ReplicatedStorage")
007local furniture = rs["Furniture"]
008local remotes = rs["Remotes"]
009local confrimPlacement = remotes["ConfirmPlacement"]
010 
011-- Secondary Variables
012local studio = workspace:WaitForChild("Harbour Studio")
013local studioFurniture = studio["Furniture"]
014local owner = studio["Owner"]
015 
View all 118 lines...
0
magnitude Sorukan 240 — 6y
0
I don't really know how to use it sad_eyez 162 — 6y
0
maybe region3 ihatecars100 502 — 6y
0
Hey -- it seems the other answers haven't looked at the image you provided. Are you looking for surface area or complex volume? (surface area or cubic studs inside of your highlighted area) SummerEquinox 643 — 6y
0
Not sure, I just want to be able to check to see if the object I am placing is between the area I have highlighted. sad_eyez 162 — 6y

2 answers

Log in to vote
0
Answered by 6 years ago

I think you mean magnitude. You can use magnitude to find the distance between two objects. Here's an example:

1local Part1 = workspace.Part1
2local Part2 = workspace.Part2
3 
4local magnitude = (Part.Position - Part2.Position).magnitude

Resources:

Magnitude

Accept and upvote if this helped!

1
u stole this from wiki HappyTimIsHim 652 — 6y
0
no i didnt.. there's just one way to get magnitude like this bc its a formula. just like there's only one way to solve the area of a rectangle Gey4Jesus69 2705 — 6y
0
I updated my post, I still don't understand it really, I ain't good with math sad_eyez 162 — 6y
Ad
Log in to vote
0
Answered by
Sorukan 240 Moderation Voter
6 years ago

Magnitude is basically the distance between 2 points, in your case it's the distance between your 2 parts. The distance is measured in studs so if you were to do

1local Part1 = game.workspace.Part1
2local Part2 = game.workspace.Part2
3 
4local distance = (Part1.Position - Part2.Position).magnitude -- this finds the distance between the 2 parts
5 
6wait(3)
7print("distance")

What printing the distance will do is tell you the exact amount of studs between Part1 and Part2. You can do much more with it rather than just printing such as finding the distance between a part and a player's torso, then if the distance is less than or greater than a certain amount of studs, you can do something.

Answer this question