Why isn't this part moving around with the mouse?
I want it to spawn a part with Q keep moving the part around, and then if the user clicks the part will then anchor and no longer move, everything is being printed, nothing is moving, but all the part does is briefly spawn at 0, 0, 0 then despawn, help?
01 | mouse = game.Players.LocalPlayer:GetMouse() |
06 | function onKeyDown(key) |
08 | print ( "Q was pressed" ) |
09 | if spawned = = false then |
10 | local target = mouse.Target |
11 | q = game.Lighting.Beacon:Clone() |
12 | q.Parent = game.Workspace |
13 | q.Owner.Value = script.Parent.Parent.Name |
14 | q.Size = Vector 3. new( 3 , 3 , 3 ) |
18 | print ( "Checkpoint 1; passed" ) |
21 | q.CFrame = CFrame.new(Vector 3. new(tool.Parent.Humanoid.TargetPoint.X, 1 ,tool.Parent.Humanoid.TargetPoint.Z)) |
26 | mouse.KeyDown:connect(onKeyDown) |
32 | mouse.Button 1 Up:connect(OnClick) |
34 | function onUnequipped() |
36 | spawned, final = false , false |
38 | script.Parent.Unequipped:connect(onUnequipped) |