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

Why isn't this part moving around with the mouse?

Asked by
Mystdar 352 Moderation Voter
9 years ago

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?

01mouse = game.Players.LocalPlayer:GetMouse()
02tool = script.Parent
03spawned = false
04final = false
05 
06function onKeyDown(key)
07    if key == "q" then
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 = Vector3.new(3,3,3)
15            q.Anchored = false
View all 38 lines...

Answer this question