Advertisement
ustinjamesss

scrept

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