amnt = 10000 function onTouched(part) local h = part.Parent:findFirstChild("Humanoid") if (h~=nil) then local thisplr = game.Players:findFirstChild(h.Parent.Name) if (thisplr~=nil) then local stats = thisplr:findFirstChild("Stats") if (stats~=nil) then local score = stats:findFirstChild("Multiplier") if (score~=nil) then score.Value = score.Value + amnt script.Parent:Destroy() --Added it in right here to destroy part end end end end end
script.Parent.Touched:connect(onTouched)