Advertisement
ustinjamesss

scrept

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