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

Need help/fix on this part of framework. What's causing it?

Asked by 7 years ago

I am currently working on an FPS framework (mainly milsim) I made a team script to that players on a certain team, get a certain load-out/rifle. Im having problems with this one part and was wondering what is causing it and if there is a way to fix it. Thanks!

01local gun
02--LOAD THE GUN MODEL FOR TEAM1
03if player.Team == game.Teams.Team1 then
04if weaponType == 1 then
05    gun = self.primary2
06else
07if player.Team == game.Teams.Team2 then
08if weaponType == 1 then
09    gun = self.primary1
10elseif
11    weaponType == 2 then
12    gun = self.secondary
13end
14end
15end
View all 21 lines...
0
is it meant to go into the workspace abnotaddable 920 — 7y
0
Team1 works fine, Team2 has an error The_MRAP 4 — 7y
0
Team1 works fine, Team2 has an error Players.quackroblox10.PlayerScripts.Framework:1291: attempt to index local 'gun' (a nil value) The_MRAP 4 — 7y
0
nvm got it working The_MRAP 4 — 7y

Answer this question