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

Vector3 relative to torso position help?

Asked by 8 years ago
01local p = Instance.new("Part")
02p.Position = handle.Position + Vector3(0,5,0) -- wot???
03p.TopSurface = "Smooth"
04p.BottomSurface = "Smooth"
05p.Shape = Enum.PartType.Ball
06p.Size = Vector3.new(0.7, 0.7, 0.7)
07p.Transparency = (0.5)
08p.CanCollide = false
09p.Material = "Neon"
10p.BrickColor = BrickColor.new("Black")
11p.Parent = ws

So basically this part gets launched using body velocity. handle is player's torso, vector3 won't work and I have no idea how to use this properly, I've searched the ROBLOX wiki but they're unhelpful as always ;-; help is very much appreciated!!

1 answer

Log in to vote
1
Answered by 8 years ago

Try Vector3.new(0,5,0)

0
yes Azarth 3141 — 8y
0
Yep works, sorry for the month late upvote lmao Shadowthaumaturge 97 — 7y
Ad

Answer this question