HarmosCreations

Results 6 issues of HarmosCreations

``` local function findSmallestNumber(t:{[K]:number}):(number,K) local smallest = nil local smallestK = nil for k, v in t do if (not smallest) then smallest = v; smallestK = k; continue end...

bug
new solver

function module.Debug(code:string, step:number, excluded:{string}?) code = module.RemoveComments(code) local i= 1 if (step > i) then code = module.ReplaceAnnotations(code) i+=1 end if (step > i) then code = module.RemoveDocumentations(code) i+=1 end...

bug

This is a issue and i cannot send the whole script because it is a secret script. but ill try to send this. USING NEW TYPE SOLVER! ```luau local sources...

bug
new solver

```lua --!strict local super = require(script.Parent.Parent.Parent.Classes) local public = {} function public.Sprint(self:Class) -- even tried with : self.test = 2 -- Type 'Class' does not have key 'test' or Cannot...

bug

` !strict local t = {a = 2} for k, v in t do print(k,v) end -- Cannot iterate over a table without indexer for k, v in pairs(t) do...

bug

```luau function public:Heal(timer:number) local self :Healing = self if (self.Healing == true) then return end self.Healing = true --Type 'true' could not be converted into '~true'; type true (true) is...

bug
new solver