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

+Value and :Destroy() won't work?(RE)

Asked by 6 years ago
01-- Script
02    game.Players.PlayerAdded:Connect(function(player)
03        script.Parent.Touched:Connect(function(hit)
04            if hit.Parent:FindFirstChild("Humanoid") then
05                local lead = player:WaitForChild("leaderstats")
06                local food1 = lead:WaitForChild("Food Collected")
07                food1.Value = food1.Value + 2
08                script.Parent:Destroy()
09            end
10        end)
11    end)

if the food has been touched, it will +2 the value in leaderstats.Food Collected and Destroy() it, but it does it, but I touched about 30 of them, but only one has been destroyed and got +2 value in leaderstats. Can somebody enhance the script so that you can touch and collect(Destroy) it easily?

1 answer

Log in to vote
0
Answered by 6 years ago

You need to use :GetPlayerFromCharacter

01local Players = game:GetService("Players")
02 
03script.Parent.Touched:Connect(function(hit)
04    if Players:GetPlayerFromCharacter(hit.Parent) then
05        local Player = Players[hit.Parent.Name]
06        local leaderstats = Player:WaitForChild("leaderstats")
07 
08        local Food1 = leaderstats:WaitForChild("Food Collected")
09        Food1.Vaalue = Food1.Value +2
10 
11        script.Parent:Destroy()
12    end
13end)

Thank me later

Ad

Answer this question