-
What do you want to achieve? read topic
-
What is the issue?
everything used to work, it doesn’t throw any errors, and it does every print. yet it doesnt work -
What solutions have you tried so far? ive tried for over 3 hrs to fix this
here is my code
all the variables were defined earlier so dont worry
pcall(rebirths.Changed:Connect(function()
for _, child in pairs(scrollingFrame:GetChildren()) do
print("done0")
if child:IsA("TextButton") then
local rebirthsAmount = tonumber(child.Name)
print("done1")
child.clickPrice.Text = abbreviateNumber:Abbreviate(rebirthsAmount*100*((1)+rebirthsv/10))
print("done2")
child.clickPrice2.Text = (rebirthsAmount*100*((1)+rebirths.Value/10))
end
end
end)
it does every thing right except this line:
child.clickPrice.Text = abbreviateNumber:Abbreviate(rebirthsAmount*100 ((1)+rebirthsv/10))
it doesn’t change the text
AND YES I MADE AN ABBREVIATE MODULE ALREADY THATS NOT THE ISSUE