How to subtract a dictionary's value?

Try this :point_down::point_down::point_down:

local Calc = require(2621701837)

local dictionary = {[1] = "13", [2] = "15", [3] = "18"}
local number = "5" -- Set this to the amount you want to subtract but make sure it is in quotes

function Calculate(String)
	
	local Ran, Num = pcall(Calc, String)
	
	if not Ran then return "Invalid formula" end

	return Num

end

for i, v in pairs(dictionary) do
print(Calculate(v.."-"..number))
end

what’s that do? What’s it calculating?

It is a string calculator module I found. Here’s the link: String Calculator
Give it a try.

table.remove(tablethingy, 1)

Hmm I’m trying to think of a work around but if you guys have anything let me know. Thanks!