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 food 1 = lead:WaitForChild( "Food Collected" ) |
07 | food 1. Value = food 1. 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?
You need to use :GetPlayerFromCharacter
01 | local Players = game:GetService( "Players" ) |
02 |
03 | script.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 Food 1 = leaderstats:WaitForChild( "Food Collected" ) |
09 | Food 1. Vaalue = Food 1. Value + 2 |
10 |
11 | script.Parent:Destroy() |
12 | end |
13 | end ) |
Thank me later