ServerScriptService.RemoteHandler:5: attempt to index nil with 'Power'?
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:
01 | local sword = script.Parent |
02 | local player = game.Players.LocalPlayer |
04 | sword.Activated:Connect( function () |
05 | if player.Debounce.Value = = false then |
06 | game.ReplicatedStorage.RemoteEvents.Power:FireServer(script.Parent.Values) |
08 | local action = script.Parent.Parent.Humanoid:LoadAnimation(script.Animation) |
Remotehandler script
1 | ReplicatedStorage.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 |