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

Weld Gun Script Breaks/Works half the time?

Asked by 8 years ago

So here is my whole script! Question is below

01local Player = game:GetService("Players")
02script.Parent.Equipped:connect(function(gun)
03 
04local Handle = script.Parent.Handle
05local Union = script.Parent.Union
06local Shoot = script.Parent.Shoot
07local Hand = Player.LocalPlayer.Character
08 
09Handle.Anchored = false
10Union.Anchored = false
11Shoot.Anchored = false
12    wait()
13    local weld = Instance.new ("Weld", Handle)
14    weld.Part0 = Handle
15    weld.Part1 = Union
View all 55 lines...

So, what happens is that it sometimes goes in the direction where its suppose to be. But other times it just gives up and stays in a "Default" position. There are NO output errors, and I'm about to bust my monitor. Thanks!

0
You should try using the built in Motor6D's, they work just as good! :) xuefei123 214 — 8y

Answer this question