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

LightSaber Script needs to stay in the exact place it's in Help please?

Asked by 10 years ago

I made this script, when you press q, it's supposed to pull a saber out of the handle. But what it does is the saber that's going out just drops to the ground, and doesn't stay in place. Help? Thanks!

Player = game.Players.LocalPlayer
Mouse = Player:GetMouse()

function Out(key)
if key == "q" then 
for i = 0,4.46,0.3 do
    script.Parent.Blade.Size = Vector3.new(0.3,i,0.3)
    wait(.1)
end
end
end


Mouse.KeyDown:connect(Out)

1 answer

Log in to vote
0
Answered by 10 years ago

You have to weld the blade to the handle.

0
I did TheReapersComing 0 — 10y
0
CanCollide Off? and you welded the Part0, Part1, C0, and C1? XtremeSpy 80 — 10y
Ad

Answer this question