Advertisement
Guest User

Project Mugetsu Auto Redeem + Spin Clan + Webhook

a guest
Apr 11th, 2023
6,998
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.60 KB | None | 0 0
  1.  
  2.  
  3. repeat wait() until game:IsLoaded()
  4. wait(2)
  5. local clans = {"Uryu", "Yamamoto", "Urahara", "Kurosaki"} -- Will SPIN TILL IT GETS ONE OF THESE U CAN ADD MORE IF U WANT
  6. local url = "webhook" -- put ur webhook here (NOTIFY YOU IF U GET ONE OF THE CLANS U WANT)
  7.  
  8. game:GetService("ReplicatedStorage").Change_Slot:InvokeServer(1)
  9.  
  10. function redeem()
  11. local a = {"35KLIKES", "SORRYFORSHUTDOWN", "RELEASE", "EXPLOITFIXES", "SHUTDOWNSPINS"}
  12.  
  13. for _, itemName in pairs(a) do
  14. game:GetService("ReplicatedStorage").Code:InvokeServer(itemName)
  15. end
  16. end
  17.  
  18. redeem()
  19. wait(2)
  20.  
  21. function spin()
  22. local user = tostring(game.Players.LocalPlayer)
  23.  
  24. _G.loop = true
  25. while _G.loop do
  26. game:GetService("ReplicatedStorage").Spin:InvokeServer(1)
  27. task.wait(0.1)
  28. local found = false
  29.  
  30. for i=1, #clans do
  31. if clans[i]:lower() == game:GetService("ReplicatedStorage")["Player_Datas"][user]["Slot_1"].Clan.Value:lower() then
  32. found = true
  33. break
  34. end
  35. end
  36.  
  37. if found then
  38. print("YAYYYYY YOU GOT "..tostring(game:GetService("ReplicatedStorage")["Player_Datas"][user]["Slot_1"].Clan.Value))
  39. local data = {
  40. ["content"] = "@everyone YOU ROLLED SOMETHING",
  41. ["username"] = "Jon Jones",
  42. ["avatar_url"] = "https://a.espncdn.com/combiner/i?img=/i/headshots/mma/players/full/2335639.png",
  43. ["embeds"] = {
  44. {
  45. ["description"] = "**Project Mugetsu**\n\n```User: "..user.."\n\nClan: "..game:GetService("ReplicatedStorage")["Player_Datas"][user]["Slot_1"].Clan.Value.."```",
  46. ["type"] = "rich",
  47. ["color"] = tonumber(0x5a3812)
  48. }
  49. }
  50. }
  51. local newdata = game:GetService("HttpService"):JSONEncode(data)
  52. local headers = {
  53. ["content-type"] = "application/json"
  54. }
  55. request = http_request or request or HttpPost or syn.request
  56. local send = {Url = url, Body = newdata, Method = "POST", Headers = headers}
  57. request(send)
  58. _G.loop = false
  59. else
  60. print("Rolled "..tostring(game:GetService("ReplicatedStorage")["Player_Datas"][user]["Slot_1"].Clan.Value))
  61. end
  62. end
  63. end
  64.  
  65. spin()
  66.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement