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

Gun Working in Roblox Studio, but not in Player? PLEASE Help! Not working Properly!

Asked by 8 years ago

So i have a Item In the shop! It is doing what it is soposed to do, but the problem is that when it loads, the Words load, but none of the scripts of the gun load properly! THIS IS A SCRIPT

01wait(math.random(0, 200) / 200) --This is to prevent more than one Ignore_Model from being created
02 
03if _G.Ignore_Code then --If the Ignore_Code already exists, then the script creates the Ignore_Model
04    --[[
05        The purpose of this is so that every gun in a game that uses this gun kit will share one Ignore_Model. That way,
06        bullet trails, bullet holes, and other fake arms will be ignored by the gun which makes the bullets more likely to
07        hit a character part
08    --]]
09    if (not game.Workspace:FindFirstChild("Ignore_Model_".._G.Ignore_Code)) then
10        local Ignore_Model = Instance.new("Model")
11        Ignore_Model.Name = "Ignore_Model_".._G.Ignore_Code
12        Ignore_Model.Parent = game.Workspace
13 
14        spawn(function()
15            while true do
View all 57 lines...

The Next peice of code is A LOCAL Script, but it has over 3 thousand lines of Code, so im not going to paste it down here, But basicly it holds EVERYTHING the Gun needs to function! And the actually shooting part, The Next lines of code are trully based of of the Local Script, this is a Module Script, it contains all of the Settings this needs to Actually Work the Mode you choose it to work! I would paste the script, but it is awful long, but is there anything that i can do from all that you know of?

0
Where is the LocalScript? Have you got FilteringEnabled on? User#6546 35 — 8y
0
First of all, these are turbo fusion gunscripts. Second, TurboFusion gunscripts do not work with FE. If you need gun scripts that work with FE your best bet is to make your own. AZDev 590 — 8y
0
If FE is not on, I'm not quite sure how you have your game set up but it might be worth disabling the scripts in the gun and then enabling them when you give the gun to the player. AZDev 590 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

is FilteringEnabled on?

Ad

Answer this question