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

ServerScriptService.RemoteHandler:5: attempt to index nil with 'Power'?

Asked by
Zelt3q 31
4 years ago

I have a problem. When I simply put my tool in the StarterPack from the start it works fine. However, when I put it in a folder, and clone it and attach it to game.Players.LocalPlayer.Backpack it retrieves ServerScriptService.RemoteHandler:5: attempt to index nil with 'Power'. Any ideas why?

Add Power script:

01local sword = script.Parent
02local player = game.Players.LocalPlayer
03 
04sword.Activated:Connect(function()
05    if player.Debounce.Value == false then
06        game.ReplicatedStorage.RemoteEvents.Power:FireServer(script.Parent.Values)
07 
08        local action = script.Parent.Parent.Humanoid:LoadAnimation(script.Animation)
09 
10        action:play()
11    end
12end)

Remotehandler script

1ReplicatedStorage.RemoteEvents.Power.OnServerEvent:Connect(function(player, valueFolder)
2    if player.Debounce.Value == false then
3        player.leaderstats.Power.Value = player.leaderstats.Power.Value + valueFolder.Power.Value*(player.leaderstats.Rebirths.Value + 1)
4        player.Debounce.Value = true
5        wait(valueFolder.Cooldown.Value)
6        player.Debounce.Value = false
7    end
8end)
0
Where is the folder? Optikk 499 — 4y
0
Well, if it says attempt to index nil, the folder is nil (Nothing) sebanuevo 123 — 4y

Answer this question