of     1   

EddyAldeen
#196375175Wednesday, August 17, 2016 9:36 AM GMT

I have this script where when you touch it you get strength but it gives everyone in the server the value i just want 1 person to get it how would i do it? function onTouched(hit) end script.Parent.Touched:connect(onTouched) script.Parent.Touched:connect(function() for _,Player in pairs(game.Players:GetPlayers()) do if Player:FindFirstChild("leaderstats") then Player.leaderstats.Strength.Value = Player.leaderstats.Strength.Value +5 end end end) its either onion
Azure_Kite
#196375434Wednesday, August 17, 2016 9:50 AM GMT

script.Parent.Touched:connect(function(Part) Player = game.Players:FindFirstChild(Part.Parent.Name) if Player then Player.leaderstats.Strength.Value = Player.leaderstats.Strength.Value +5 end end)
Stadow
#196378647Wednesday, August 17, 2016 12:34 PM GMT

ask on scripting helpers :(
sonihi
#196382570Wednesday, August 17, 2016 2:23 PM GMT

What Azure Said.
EddyAldeen
#196393528Wednesday, August 17, 2016 5:57 PM GMT

ty bb heres ze link to game if you want to check it out https://www.roblox.com/games/479788927/Street-F1ght-BETA#!/about im not a god im a dog backwards gg
Azure_Kite
#196445822Thursday, August 18, 2016 9:45 AM GMT

@Stadow Scripting Helpers does not exist anymore, IF you are talking about scripters forum, Its not for asking help
Stadow
#196452880Thursday, August 18, 2016 2:32 PM GMT

no, I mean scriptinghelpers.org , they moved it there
Azure_Kite
#196516223Friday, August 19, 2016 9:42 AM GMT

it's not roblox's official forum and i dont see anything wrong on posting it here
sc4rydev
#196521156Friday, August 19, 2016 12:56 PM GMT

There's nothing wrong with it, just stingy people.
Stadow
#196564122Saturday, August 20, 2016 12:29 AM GMT

my bad, people were calling me out for doing this earlier. sorry :(

    of     1