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

[close] Medkit code not working, after putting required script in serverstorage?

Asked by 5 years ago
Edited 5 years ago

This question has been solved by the original poster.

So, I'm using the default Roblox Medkit (the one seen in the template) and I get the following error: Players.relatlves.Backpack.Medkit.MedkitScript:30: attempt to index local 'character' (a nil value) I've tried putting the ROBLOX_HumanoidList in ServerStorage incase the code that puts the HumanoidList in ServerStorage doesn't work anymore. Code:

01local tool = script.Parent
02if not game.ServerStorage:FindFirstChild("ROBLOX_HumanoidList") then
03    tool.ROBLOX_HumanoidList:Clone().Parent = game.ServerStorage
04end
05local HumanoidList = require(game.ServerStorage.ROBLOX_HumanoidList)
06local lastHealed = os.time()
07 
08local configTable = tool.Configurations
09local configs = {}
10local function loadConfig(configName, defaultValue)
11    if configTable:FindFirstChild(configName) then
12        configs[configName] = configTable:FindFirstChild(configName).Value
13    else
14        configs[configName] = defaultValue
15    end
View all 46 lines...

HumanoidList Code:

01local humanoidList = {}
02local storage = {}
03 
04function humanoidList:GetCurrent()
05    return storage
06end
07 
08local function findHumanoids(object, list)
09    if object then
10        if object:IsA("Humanoid") then
11            table.insert(list, object)
12        end
13 
14        for _, child in pairs(object:GetChildren()) do
15            local childList = findHumanoids(child, list)
View all 30 lines...

Edit: Yes, I did try editing the code, it just made it worse.

0
The error you said basically means that the "Character" doesn't exist. niroqeo 123 — 5y
0
I got it to work. relatlves 17 — 5y

Answer this question