Advertisement
IHATEMICROWAVEOVEN

prints all moves

Oct 27th, 2023
65
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. local movesPathway = game.StarterGui.SkillsGui.WeaponsController
  2.  
  3. local bigStringToPrint = "const equivalents: {[string: string]: string} = {\n"
  4. local lastMoveAmount = math.huge
  5. for i, child in ipairs(movesPathway.ServerModules:GetChildren()) do
  6. bigStringToPrint = bigStringToPrint.." \""..string.lower(child.Name).."\": \""..child.Name.."\",\n"
  7. end
  8. print(bigStringToPrint.."}")
  9. print("All done!!!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement