The only thing I can think of is making a function to simplify it.
local function incrementAttribute(instance, attribute)
--//Increments an attribute on an instance by +1
instance:SetAttribute(attribute, instance:GetAttribute(attribute) + 1)
end
incrementAttribute(myPart, "Value")
Why didn’t I think of this! I will be sharing this with all my friends.
Decided to modify it a little bit so you can have a different Incremented value (Since I use those a lot)
local function IncrementAttribute(InstanceLocation, AttributeName, Incremented)
InstanceLocation:SetAttribute(AttributeName, InstanceLocation:GetAttribute(AttributeName) + Incremented)
end