humarb

TestTZ

Aug 25th, 2025 (edited)
20
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.96 KB | None | 0 0
  1. local ReplicatedStorage = game:GetService("ReplicatedStorage")
  2. local Players = game:GetService("Players")
  3.  
  4. function dump(o)
  5. if type(o) == 'table' then
  6. local s = '{ '
  7. for k,v in pairs(o) do
  8. if type(k) ~= 'number' then k = '"'..k..'"' end
  9. s = s .. '['..k..'] = ' .. dump(v) .. ','
  10. end
  11. return s .. '} '
  12. else
  13. return tostring(o)
  14. end
  15. end
  16.  
  17. print("START")
  18.  
  19. -- local eqConfig = ReplicatedStorage.Shared.Packages.Knit.Services.FlowAndStylesService.RF.GetEquippedConfig:InvokeServer("Flow")
  20. -- print(dump(eqConfig))
  21.  
  22. local spinConfig = {"Flow", "Lucky"}
  23.  
  24. local spin = ReplicatedStorage.Shared.Packages.Knit.Services.FlowAndStylesService.RF.Spin:InvokeServer(unpack(spinConfig))
  25. print(spin)
  26.  
  27. -- local packConfig = {"Emotes", "Toxic Emotes Pack"}
  28. -- local openPack = ReplicatedStorage.Shared.Packages.Knit.Services.PackService.RF.OpenPack:InvokeServer(unpack(packConfig))
  29. -- print(openPack)
  30. -- print(dump(openPack))
Advertisement
Add Comment
Please, Sign In to add comment