My local function doesn't run properly through the actual game, but in studio it's the opposite?
For some odd reason, the local function for my combat isn't working. I've tried looking through it multiple times to look for server functions that aren't supposed to be in the local script, but it still continues to do act the same.
Here is the block of code(Don't pay attention to the commented lines):
01 | local function combat() |
02 | if equipped = = false or player.Character:FindFirstChild( "BlockValue" ).Value = = 1 then return end |
03 | print ( "Test complete 1" ) |
05 | local punch = Instance.new( "Animation" ) |
07 | local loadanim 1 = humanoid:LoadAnimation(punch) |
08 | local punchh = Instance.new( "Animation" ) |
10 | local loadanim = humanoid:LoadAnimation(punchh) |
12 | if P = = false and P 2 = = false then |
14 | enableDamage:FireServer() |
18 | disableDamage:FireServer() |
21 | repeat wait() until loadanim:Stop() |
24 | if P = = true and P 2 = = false then |
27 | enableDamage:FireServer() |
36 | disableDamage:FireServer() |
41 | repeat wait() until loadanim 1 :Stop() |
Note: The local function is called when the player presses they're M1 while a tool is equipped.
Also, P/P2 are both variables to make sure the server switches the arm animations.
If you wish for me to be more specific please do so.