[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:
01 | local tool = script.Parent |
02 | if not game.ServerStorage:FindFirstChild( "ROBLOX_HumanoidList" ) then |
03 | tool.ROBLOX_HumanoidList:Clone().Parent = game.ServerStorage |
05 | local HumanoidList = require(game.ServerStorage.ROBLOX_HumanoidList) |
06 | local lastHealed = os.time() |
08 | local configTable = tool.Configurations |
10 | local function loadConfig(configName, defaultValue) |
11 | if configTable:FindFirstChild(configName) then |
12 | configs [ configName ] = configTable:FindFirstChild(configName).Value |
14 | configs [ configName ] = defaultValue |
18 | loadConfig( "HealAmount" , 20 ) |
19 | loadConfig( "HealDistance" , 10 ) |
20 | loadConfig( "HealCooldown" , 2 ) |
22 | tool.Activated:Connect( function () |
24 | if now - lastHealed > = configs [ "HealCooldown" ] then |
27 | local humanoids = HumanoidList:GetCurrent() |
28 | for _, humanoid in pairs (humanoids) do |
29 | local character = humanoid.Parent |
30 | if character:FindFirstChild( "HumanoidRootPart" ) then |
31 | local distance = (tool.Handle.Position - character:FindFirstChild( "HumanoidRootPart" ).Position).magnitude |
32 | if distance < configs [ "HealDistance" ] then |
33 | humanoid.Health = humanoid.Health + configs [ "HealAmount" ] |
34 | local healSmokeThread = coroutine.create( function () |
35 | local smoke = Instance.new( "Smoke" , character:FindFirstChild( "HumanoidRootPart" )) |
36 | smoke.Color = Color 3. new( 0 , 1 , 0 ) |
41 | coroutine.resume(healSmokeThread) |
HumanoidList Code:
01 | local humanoidList = { } |
04 | function humanoidList:GetCurrent() |
08 | local function findHumanoids(object, list) |
10 | if object:IsA( "Humanoid" ) then |
11 | table.insert(list, object) |
14 | for _, child in pairs (object:GetChildren()) do |
15 | local childList = findHumanoids(child, list) |
20 | local updateThread = coroutine.create( function () |
23 | findHumanoids(game.Workspace, storage) |
28 | coroutine.resume(updateThread) |
Edit: Yes, I did try editing the code, it just made it worse.