Need help with text button text script

I’m making a Best Score text button for a run game so I want to make the Best Score = Score.Value but idk how

see the script to understand

local player = game.Players.LocalPlayer
local leaderstats = player:WaitForChild("leaderstats2")
local Score = leaderstats:WaitForChild("Score")
script.Parent.Text = "Best Score :" -- I want to make the text = Best Score : Score.Value for example Best Score = 10
script.Parent.Text = "Best Score :" .. Score.Value

You would need to use concatenation. This means connecting a string and another data type in one string. It’s done like this:

print(“Best score: “ ..Score.Value)

You put two dots next to what you want to concatenate.

tysm bro

(Extra Characters aaa)