hi i have a simple problem this line is giving me an error
surface.FindFirstChild("Score").Value+votevalue.Value
it's giving me incomplete statement
You need to set values equal to values.
So to fix it:
surface.FindFirstChild("Score").Value=surface.FindFirstChild("Score").Value+votevalue.Value
If this answers your question, mark it as the accepted answer, and if not, just let me know if you have anymore questions.