How do I use surface normals to make a 'bullet mark' where a ray ends?
Asked by
6 years ago Edited 6 years ago
So I have a script that makes a mark on wherever the player clicks. However it is really glitchy and doesn't really work.
this is how it looks on the floor(where its supposed to be flat) https://gyazo.com/73c47bee3eb199b72c6568e29aa50c67
this is how it looks like on a wall(where it is supposed to be what the floor is like) https://gyazo.com/4928e30f320843d895cdf6ca46598051
Any ideas why this is happening? This is my script:
01 | game.ReplicatedStorage.stupefyy.OnServerEvent:Connect( function (player, name, a) |
03 | local animation = game.Players:FindFirstChild(name).Character.Humanoid:LoadAnimation(game.Workspace:FindFirstChild(name).Wand.Animation) |
05 | local characterr = game.Workspace:FindFirstChild(name) |
06 | lol = Instance.new( "Sound" ) |
07 | lol.Parent = game.Workspace:FindFirstChild(name).Wand.Tip |
17 | local character = game.Workspace:FindFirstChild(name) |
18 | local origin = character.Wand.Tip.Position |
21 | local ray = Ray.new(origin, (a - origin).Unit * 750 ) |
22 | local studsUporDown = 0.25 |
23 | local timeTillNext = 0.025 |
24 | local segmentLength = 2 |
25 | local damageAmount = 10 |
26 | local part = game.ReplicatedStorage.stup:Clone() |
27 | part.Parent = workspace |
28 | studsUporDown = studsUporDown * 100 |
30 | local function entropy() |
31 | local x = math.random(-studsUporDown,studsUporDown) / 50 |
32 | local y = math.random(-studsUporDown,studsUporDown) / 50 |
33 | local z = math.random(-studsUporDown,studsUporDown) / 50 |
34 | return Vector 3. new(x, y, z) |
37 | for i = 0 , 750 , segmentLength do |
38 | local Next = ray.Origin + i * ray.Direction.Unit + entropy() |
39 | local damageRay = Ray.new(part.Position, (Next - part.Position).Unit * segmentLength) |
40 | part.CFrame = CFrame.new(Next) |
41 | local hit, End = workspace:FindPartOnRay(damageRay, character, false , true ) |
42 | if hit and hit ~ = part then |
44 | local burn = game.ReplicatedStorage.hit |
47 | part.CFrame = CFrame.new(End) |
48 | local hum = hit.Parent:FindFirstChild( "Humanoid" ) or hit.Parent.Parent:FindFirstChild( "Humanoid" ) |
50 | hum:TakeDamage(damageAmount) |
52 | loll = Instance.new( "Sound" ) |
58 | hum.PlatformStand = true |
60 | hum.PlatformStand = false |
63 | local burnHit = burn:Clone() |
65 | burnHit.Parent = workspace |
66 | local hit, pos, normal = game.Workspace:FindPartOnRay(ray) |
67 | burnHit.CFrame = CFrame.new(pos, pos * normal) |
68 | loll = Instance.new( "Sound" ) |
it has to do with
1 | local hit, pos, normal = game.Workspace:FindPartOnRay(ray) |
2 | burnHit.CFrame = CFrame.new(pos, pos + normal) |