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

Teleporting with warbound guns how to fi?

Asked by 4 years ago

I have 1 warbound gun and when i switch the gun when i run it teleport's me back and sometimes my Character falls down

0
i believe that the makers of warbound purposely broke their guns so that people would use their new system of gun. I cannot tell you the new system because I don't know it currently. All I know is that the guns are broke. theoreticais 0 — 4y
0
Make all the parts of the tool have anchored as false. The new system is Vanguard SIayec 7 — 3y

1 answer

Log in to vote
0
Answered by 4 years ago

Here is the script,however you cannot use any other item you have,you will see what I mean. Script: game:GetService("Players").PlayerAdded:connect(function(player) local function hookTool(tool) if not tool:IsA("Tool") then return end game:GetService("RunService").Heartbeat:wait() tool.Parent = player.Character end

player:WaitForChild("Backpack").ChildAdded:connect(hookTool)

player.ChildAdded:connect(function(child) if child:IsA("Backpack") then child.ChildAdded:connect(hookTool) end end)

for i,v in pairs(player.Backpack:GetChildren()) do hookTool(v) end end)

Ad

Answer this question