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

expecting Number, got object. How do i fix?

Asked by
DollorLua 235 Moderation Voter
5 years ago

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

1print(min)
2print(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

01local Module = {
02    --] Basic Configuration
03    ["MaxDamage"] = 2,
04    ["MinDamage"] = 1,
05    ["Cooldown"] = 1,
06    ["Cost"] = 0,
07    --] Advanced
08    ["HumanoidToKill"] = "Enemy"
09}
10 
11return Module

and in the local script heres the define of min and max

1local min = _M.MinDamage
2local max = _M.MaxDamage

and here is the module

1local _M = require(script.Parent.Settings)

please help someone

0
I'm pretty sure when it sats got object it means it got the module script and not whats inside of it. kittonlover101 201 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago
Edited 5 years ago

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:

01local 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  
11return module

Script:

1local _M = require(script.Parent.Settings)
2 
3local min = _M.MinDamage
4local max = _M.MaxDamage
5 
6print(min)
7print(max)
Ad
Log in to vote
0
Answered by
DollorLua 235 Moderation Voter
5 years ago

I have fixed the issue. Thank-you for your answer but i found my mistake.

0
Ok! kittonlover101 201 — 5y

Answer this question