Attempt to call a instance value

local module = {}
local abvs = {
	"", 
	"K", -- 4
	"M", -- 7
	"B", -- 10
	"T", -- 13
	"Qd", -- 16
	"Qn", -- 19
	"Sx", -- 22
	"Sp", -- 25
	"O", -- 28
	"N", -- 31
	"de", -- 34
	"Ud", -- 37
	"DD", -- 40
	"tdD", -- 43
	"qdD", -- 46
	"QnD", -- 49
	"sxD", -- 52
	"SpD", -- 55
	"OcD", -- 58
	"NvD", -- 61
	"Vgn", -- 64
	"UVg", -- 67
	"DVg", -- 70
	"TVg", -- 73
	"qtV", -- 76
	"QnV", -- 79
	"SeV", -- 82
	"SPG", -- 85
	"OVG", -- 88
	"NVG", -- 91
	"TGN", -- 94
	"UTG", -- 97
	"DTG", -- 100
	"tsTG", -- 103
	"qtTG", -- 106
	"QnTG", -- 109
	"ssTG", -- 112
	"SpTG", -- 115
	"OcTG", -- 118
	"NoAG", -- 121
	"UnAG", -- 124
	"DuAG", -- 127
	"TeAG", -- 130
	"QdAG", -- 133
	"QnAG", -- 136
	"SxAG", -- 139
	"SpAG", -- 142
	"OcAG", -- 145
	"NvAG", -- 148
	"CT", -- 151
	"TaCG", -- 154
	"AnTG", -- 157
	"YX", -- 160
	"YaZQ", -- 163
	"YXZ", -- 166
	"NoEV", -- 169
	"KoTG", -- 172
	"TrAG", -- 175
	"e178",  -- 178
	"e181", -- 181
	"e184", -- 184
	"e187", -- 187
	"e190", -- 190
	"e193", -- 193
	"e196", -- 196
	"e199", -- 199

	"inf"; -- ok
}

module.abbreviate = function(number)
	for i =1, #abvs do
		if number < 10 ^ (i * 3) then
			if abvs[i] == "inf" then
				return "inf"
			else
				return math.floor(number / ((10 ^ ((i-1) * 3)) / 100)) / (100)..abvs[i]
			end
		elseif tostring(number) == "inf" then
			return "inf"
		end
	end
end
return module

	Level.Text = "Level: "..Player_Level.Value
	Required_Strength.Text = Player_EXP.Value..'/'..Player_RS.Value

Attempt to call Instance a value
I know that Player_Level is an Instance but how do i make i make it a number so i can abbreviate it?
also player_level is plr.leaderstats.Level

I don’t see anything in the provided code that relates to the error

Just do what you did here:

or

tonumber(Player_Level.Value)

If you’re saving Player_Level.Value as something like 20M, then you should just be abbreviating the displayed text on the screen and not the value itself.

I tried

tonumber(Player_Level.Value)

it didn’t work and still gave me the same error
the module script should make it so if u have “10000” it will make it “10k” instead

Still same error i tried it but doesnt work

Where are you receiving this error from?

you are not using require() on the module script