|
| 30 Nov 2014 07:15 PM |
Just learning about these darn things, but how can I make one visible? Would I have to create a part and make it in the ray's position? Please help!
- D4rKP01s0n |
|
|
| Report Abuse |
|
|
|
| 30 Nov 2014 07:40 PM |
It seems that when I take time to write a decent post, it is ignored :(
BUMP |
|
|
| Report Abuse |
|
|
Quasar99
|
  |
| Joined: 21 Nov 2009 |
| Total Posts: 9328 |
|
|
| 30 Nov 2014 07:44 PM |
| yes, you have to make a part that follows the ray's path. theres no other way to see it |
|
|
| Report Abuse |
|
|
|
| 30 Nov 2014 07:56 PM |
How would I go about creating a part on the ray?
Thank you for responding -D4rKP01s0n |
|
|
| Report Abuse |
|
|
Goulstem
|
  |
| Joined: 04 Jul 2012 |
| Total Posts: 7177 |
|
|
| 30 Nov 2014 08:03 PM |
h4x probably.
lolno..
http://wiki.roblox.com/index.php?title=How_to_Make_a_Raycasting_Lasergun Look at the drawing the ray part^
Ex;
local start = game.Workspace.Part1 local endd = game.Workspace.Part2 local dist = (endd - start).magnitude
local ray = Instance.new("Part",game.Workspace) ray.Name = "rayPart" ray.FormFactor = "Custom" ray.Anchored = true ray.Size = Vector3.new(0,0,dist) ray.CFrame = CFrame.new(start,endd) * CFrame.new(0,-dist/2,0) |
|
|
| Report Abuse |
|
|
| |
|