Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local StartButton = Instance.new("TextButton")
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- ScreenGui.ResetOnSpawn = false
- StartButton.Size = UDim2.new(0, 50, 0, 50)
- StartButton.Position = UDim2.new(0.5, -25, 0, 0)
- StartButton.Text = "Give Gojo Power"
- StartButton.BackgroundColor3 = Color3.new(0, 0, 0)
- StartButton.TextColor3 = Color3.new(1, 1, 1)
- StartButton.Parent = ScreenGui
- local Button1, Button2, LeapButton, LeapFinishButton
- local buttonsCreated = false
- local function equipAndRenameTools()
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- for _, tool in ipairs(player.Backpack:GetChildren()) do
- if tool:IsA("Tool") then
- tool.Parent = character
- tool.Name = "Sorcerer"
- end
- end
- end
- local function onPlayerDeath()
- if Button1 then Button1:Destroy() end
- if Button2 then Button2:Destroy() end
- if LeapButton then LeapButton:Destroy() end
- if LeapFinishButton then LeapFinishButton:Destroy() end
- buttonsCreated = false
- end
- local player = game.Players.LocalPlayer
- player.CharacterAdded:Connect(function(character)
- character:WaitForChild("Humanoid").Died:Connect(onPlayerDeath)
- end)
- local function createButtons()
- if not buttonsCreated then
- equipAndRenameTools()
- Button1 = Instance.new("TextButton")
- Button2 = Instance.new("TextButton")
- LeapButton = Instance.new("TextButton")
- LeapFinishButton = Instance.new("TextButton")
- Button1.Size = UDim2.new(0, 100, 0, 50)
- Button1.Position = UDim2.new(0.9, -100, 0.5, -25)
- Button1.Text = "No One Can touch me"
- Button1.BackgroundColor3 = Color3.new(0, 0, 0)
- Button1.TextColor3 = Color3.new(1, 1, 1)
- Button1.Parent = ScreenGui
- Button2.Size = UDim2.new(0, 100, 0, 50)
- Button2.Position = UDim2.new(0.9, -100, 0.5, -85)
- Button2.Text = "Infinity Aura"
- Button2.BackgroundColor3 = Color3.new(0, 0, 0)
- Button2.TextColor3 = Color3.new(1, 1, 1)
- Button2.Parent = ScreenGui
- LeapButton.Size = UDim2.new(0, 100, 0, 50)
- LeapButton.Position = UDim2.new(0.9, -100, 0.5, -145)
- LeapButton.Text = "Infinity Void"
- LeapButton.BackgroundColor3 = Color3.new(0, 0, 0)
- LeapButton.TextColor3 = Color3.new(1, 1, 1)
- LeapButton.Parent = ScreenGui
- LeapFinishButton.Size = UDim2.new(0, 100, 0, 50)
- LeapFinishButton.Position = UDim2.new(0.85, -100, 0.5, -205)
- LeapFinishButton.Text = "Hollow Purple"
- LeapFinishButton.BackgroundColor3 = Color3.new(0, 0, 0)
- LeapFinishButton.TextColor3 = Color3.new(1, 1, 1)
- LeapFinishButton.Parent = ScreenGui
- Button1.MouseButton1Click:Connect(function()
- local args = {
- [1] = "Value"
- }
- game:GetService("ReplicatedStorage").KillstreakEvents.ban:FireServer(unpack(args))
- end)
- Button2.MouseButton1Click:Connect(function()
- local args = {
- [1] = "Value"
- }
- game:GetService("ReplicatedStorage").ban2:FireServer(unpack(args))
- end)
- LeapButton.MouseButton1Click:Connect(function()
- local args = {
- [1] = "Infinite Void"
- }
- game:GetService("ReplicatedStorage").DomainExpansion:FireServer(unpack(args))
- end)
- LeapFinishButton.MouseButton1Click:Connect(function()
- local args = {
- [1] = "Value"
- }
- game:GetService("ReplicatedStorage").BlackHoleGT:FireServer(unpack(args))
- end)
- buttonsCreated = true
- end
- end
- StartButton.MouseButton1Click:Connect(function()
- if not buttonsCreated then
- createButtons()
- end
- end)
Add Comment
Please, Sign In to add comment