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

Sword trail not not going inside sword?

Asked by 8 years ago
Edited 8 years ago

So what i mean is im trying to make a sword trail, but when you bring out your sword the "trail" is 4 studs above where it should be or ontop of the sword, if you do not know what i mean play this game: https://www.roblox.com/games/747028397/Sword-Trail-Test

Here is my code:

1while wait(0.035) do
2    local part = Instance.new("Part", game.Workspace.Trails)
3    part.Name = "Trail-ClassicSword"
4    part.CanCollide = false
5    part.Anchored = true
6    part.CFrame = script.Parent.Handle.CFrame - Vector3.new(0,2,0)
7    part.Rotation = script.Parent.Handle.Rotation
8    part.Size = Vector3.new(0.1,4,0.1)
9end

If someone could help me that would be great, have a good day!! :)

0
No permissions to join the game.. crywink 419 — 8y

1 answer

Log in to vote
2
Answered by 8 years ago
Edited 8 years ago

Your problem is in like 6, here you try to subtract a vector3 from a cframe value, just use cframe

01while wait(0.035) do
02    local part = Instance.new("Part")
03    part.Name = "Trail-ClassicSword"
04    part.CanCollide = false
05    part.Anchored = true
06    part.Size = Vector3.new(0.1,4,0.1)
07    part.Parent = game.Workspace.Trails
08 
09    --[[ As a good practice you should add the object to the parent after you get all the properties done]]--
10    -- heres what you should do instead
11    part.CFrame = script.Parent.Handle.CFrame*CFrame.new(0,2,0)
12    -- thats how you add to a cframe value
13    -- we also dont need the rotation code line because thats part of the cframe
14 
15    game.Debris:AddItem(part,1)
16    -- this is just to remove it or else you are going to have a lot of lag.
17end
Ad

Answer this question