This is a simple script that should add 10$ to the MoneyValue Value (yes is iNT)
`local Hitbox = script.Parent
local Values = workspace.Tycoons.Tycoon.Values
Hitbox.Touched:connect(function(hit)
if hit.Parent:FindFirstChildWhichIsA('Humanoid') then -- Check if it is a character that touched the part
Values.MoneyValue.Value += 10
Hitbox:Destroy()
end
end`
** You are now Level 8! **