im sending numbers i get from a module script to a normal script via a local script sending it. I get this: ServerScriptService.SwordHitScript:3: bad argument #1 to ‘random’ (number expected, got Object) on this: local Damage = math.random(min, max)
the local script proves it wrong with a print that prints both the min and the max
1 | print (min) |
2 | print (max) |
and it prints 1 and 2. those are numbers right? last I recalled a number isn’t a object oh and heres min and max in the module script
01 | local Module = { |
02 | --] Basic Configuration |
03 | [ "MaxDamage" ] = 2 , |
04 | [ "MinDamage" ] = 1 , |
05 | [ "Cooldown" ] = 1 , |
06 | [ "Cost" ] = 0 , |
07 | --] Advanced |
08 | [ "HumanoidToKill" ] = "Enemy" |
09 | } |
10 |
11 | return Module |
and in the local script heres the define of min and max
1 | local min = _M.MinDamage |
2 | local max = _M.MaxDamage |
and here is the module
1 | local _M = require(script.Parent.Settings) |
please help someone
Here is the method I use.
Don’t know if it’ll work for what you’re doing, but worth a try.
This DID work for me by the way.
Also make sure if your module script is in replicated storage that your script isn’t in there too.
I don’t think the script will work if so.
Module:
01 | local module = { } |
02 |
03 | --] Basic Configuration |
04 | module.MaxDamage = 2 ; |
05 | module.MinDamage = 1 ; |
06 | module.Cooldown = 1 ; |
07 | module.Cost = 0 ; |
08 | --] Advanced |
09 | module.HumanoidToKill = "Enemy" |
10 | |
11 | return module |
Script:
1 | local _M = require(script.Parent.Settings) |
2 |
3 | local min = _M.MinDamage |
4 | local max = _M.MaxDamage |
5 |
6 | print (min) |
7 | print (max) |
I have fixed the issue. Thank-you for your answer but i found my mistake.