UnknownCoolGuy

Untitled

Dec 7th, 2024
21
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.73 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local StartButton = Instance.new("TextButton")
  3.  
  4. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  5. ScreenGui.ResetOnSpawn = false
  6.  
  7. StartButton.Size = UDim2.new(0, 50, 0, 50)
  8. StartButton.Position = UDim2.new(0.5, -25, 0, 0)
  9. StartButton.Text = "Give Gojo Power"
  10. StartButton.BackgroundColor3 = Color3.new(0, 0, 0)
  11. StartButton.TextColor3 = Color3.new(1, 1, 1)
  12. StartButton.Parent = ScreenGui
  13.  
  14. local Button1, Button2, LeapButton, LeapFinishButton
  15. local buttonsCreated = false
  16.  
  17. local function equipAndRenameTools()
  18. local player = game.Players.LocalPlayer
  19. local character = player.Character or player.CharacterAdded:Wait()
  20.  
  21. for _, tool in ipairs(player.Backpack:GetChildren()) do
  22. if tool:IsA("Tool") then
  23. tool.Parent = character
  24. tool.Name = "Sorcerer"
  25. end
  26. end
  27. end
  28.  
  29. local function onPlayerDeath()
  30. if Button1 then Button1:Destroy() end
  31. if Button2 then Button2:Destroy() end
  32. if LeapButton then LeapButton:Destroy() end
  33. if LeapFinishButton then LeapFinishButton:Destroy() end
  34. buttonsCreated = false
  35. end
  36.  
  37. local player = game.Players.LocalPlayer
  38. player.CharacterAdded:Connect(function(character)
  39. character:WaitForChild("Humanoid").Died:Connect(onPlayerDeath)
  40. end)
  41.  
  42. local function createButtons()
  43. if not buttonsCreated then
  44. equipAndRenameTools()
  45.  
  46. Button1 = Instance.new("TextButton")
  47. Button2 = Instance.new("TextButton")
  48. LeapButton = Instance.new("TextButton")
  49. LeapFinishButton = Instance.new("TextButton")
  50.  
  51. Button1.Size = UDim2.new(0, 100, 0, 50)
  52. Button1.Position = UDim2.new(0.9, -100, 0.5, -25)
  53. Button1.Text = "No One Can touch me"
  54. Button1.BackgroundColor3 = Color3.new(0, 0, 0)
  55. Button1.TextColor3 = Color3.new(1, 1, 1)
  56. Button1.Parent = ScreenGui
  57.  
  58. Button2.Size = UDim2.new(0, 100, 0, 50)
  59. Button2.Position = UDim2.new(0.9, -100, 0.5, -85)
  60. Button2.Text = "Infinity Aura"
  61. Button2.BackgroundColor3 = Color3.new(0, 0, 0)
  62. Button2.TextColor3 = Color3.new(1, 1, 1)
  63. Button2.Parent = ScreenGui
  64.  
  65. LeapButton.Size = UDim2.new(0, 100, 0, 50)
  66. LeapButton.Position = UDim2.new(0.9, -100, 0.5, -145)
  67. LeapButton.Text = "Infinity Void"
  68. LeapButton.BackgroundColor3 = Color3.new(0, 0, 0)
  69. LeapButton.TextColor3 = Color3.new(1, 1, 1)
  70. LeapButton.Parent = ScreenGui
  71.  
  72. LeapFinishButton.Size = UDim2.new(0, 100, 0, 50)
  73. LeapFinishButton.Position = UDim2.new(0.85, -100, 0.5, -205)
  74. LeapFinishButton.Text = "Hollow Purple"
  75. LeapFinishButton.BackgroundColor3 = Color3.new(0, 0, 0)
  76. LeapFinishButton.TextColor3 = Color3.new(1, 1, 1)
  77. LeapFinishButton.Parent = ScreenGui
  78.  
  79. Button1.MouseButton1Click:Connect(function()
  80. local args = {
  81. [1] = "Value"
  82. }
  83.  
  84. game:GetService("ReplicatedStorage").KillstreakEvents.ban:FireServer(unpack(args))
  85. end)
  86.  
  87. Button2.MouseButton1Click:Connect(function()
  88. local args = {
  89. [1] = "Value"
  90. }
  91.  
  92. game:GetService("ReplicatedStorage").ban2:FireServer(unpack(args))
  93. end)
  94.  
  95. LeapButton.MouseButton1Click:Connect(function()
  96. local args = {
  97. [1] = "Infinite Void"
  98. }
  99.  
  100. game:GetService("ReplicatedStorage").DomainExpansion:FireServer(unpack(args))
  101. end)
  102.  
  103. LeapFinishButton.MouseButton1Click:Connect(function()
  104. local args = {
  105. [1] = "Value"
  106. }
  107.  
  108. game:GetService("ReplicatedStorage").BlackHoleGT:FireServer(unpack(args))
  109. end)
  110.  
  111. buttonsCreated = true
  112. end
  113. end
  114.  
  115. StartButton.MouseButton1Click:Connect(function()
  116. if not buttonsCreated then
  117. createButtons()
  118. end
  119. end)
Add Comment
Please, Sign In to add comment