text = script.Parent.Parent.Input.Text credits = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.StarterPack.Player.Credits.Value points = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.StarterPack.Player.Points.Value premium = script.Parent.Parent.Parent.Parent.Parent.Parent.Parent.StarterPack.Player.Premium.Value script.Parent.MouseButton1Click:connect(function() if premium == true and credits >= text then credits = credits - text points = points + (text / 1000) end end)
I have this where the text doesn't have to be a multiple of 1000, so you can get a decimal answer. How do I make it where it rounds the number down?