##Pay
your pay is around 500 - 1.1k group funds(Robux) and some game revenue
#Tasks
Must script these tools,i scripted to where they animate but i want to make it where if animation is played then if the Net hits the piece of bread like in the gyazo below then it adds a value to the backpack capacity ui above(if you dont know what backpack capacity im talking about ill leave a screenshot down below https://gyazo.com/52acfade330dddbec2d8349193c6d6ac
Good point. I just assumed that the scripter would script UIs and gameplay as well. In retrospect, it’s entirely possible that he only needs help for that.
Adding on to this, you can literally do this for free.
-- Server script inside the net mesh part
local db = false
script.Parent.Touched:connect(function(hit)
if hit.Parent == bread and not db then -- change this to check if hit is bread
db = true
local plr = game.Players:GetPlayerFromCharacter(script.Parent.Parent)
plr.leaderstats.Stat.Value = plr.leaderstats.Stat.Value + 15 -- change to whatever
end
wait(1) -- change this to how often you are able to click the tool
db = false
end)
This was written on mobile and not tested. It should work though.