I made a script where theres a intvalue inside the player, and there is a game counter changing each time the value changes, but the way the points are recieved is by the player moving, so the points rapidly increase each by each one number, and i want to make it like this, kind of like how the numbers rapidly increase one by one in a roblox game when maybe you are getting closer to a location
I dont really know how to make this, as my script the points dont increase one by one and instead increase by 5 numbers or 9 numbers each time, but i want the game counter value to increase one by one, this my attempt at it
local player = game.Players.LocalPlayer
local tweenservice = game:GetService("TweenService")
local Points = player:WaitForChild("Points")
Points.Changed:Connect(function()
script.Parent.Text = tostring(Points.Value)
end)
robloxapp-20240927-1018064.wmv (630.0 KB)