Advertisement
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 = "Corrupted Guy(unreleased)"
- 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 = "Nothing"
- 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 = "1"
- 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 = "soon."
- 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 = "Glitch Punch"
- 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 = "Smash The Ground!"
- LeapFinishButton.BackgroundColor3 = Color3.new(0, 0, 0)
- LeapFinishButton.TextColor3 = Color3.new(1, 1, 1)
- LeapFinishButton.Parent = ScreenGui
- Button1.MouseButton1Click:Connect(function()
- local args = { [1] = "Strike" }
- game:GetService("Players").LocalPlayer.Character.FerrymanStaff.StaffConfig.AbilityEvent:FireServer(unpack(args))
- end)
- Button2.MouseButton1Click:Connect(function()
- local args = { [1] = "Strike" }
- game:GetService("Players").LocalPlayer.Character.FerrymanStaff.StaffConfig.AbilityEvent:FireServer(unpack(args))
- game:GetService("Players").LocalPlayer.Character.FerrymanStaff.StaffConfig.AbilityEvent:FireServer(unpack(args))
- end)
- LeapButton.MouseButton1Click:Connect(function()
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:FindFirstChild("Humanoid")
- if humanoid then
- local animation = Instance.new("Animation")
- animation.AnimationId = "rbxassetid://16102526396"
- local animationTrack = humanoid:LoadAnimation(animation)
- animationTrack:Play()
- end
- local args = {
- [1] = "rbxassetid://9117895522",
- [2] = game:GetService("Players").LocalPlayer.Character.Torso
- }
- game:GetService("ReplicatedStorage").PlaySoundRemote:InvokeServer(unpack(args))
- local args = {
- [1] = "Ban Hammer"
- }
- game:GetService("ReplicatedStorage").RetroAbility:FireServer(unpack(args))
- end)
- LeapFinishButton.MouseButton1Click:Connect(function()
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:FindFirstChild("Humanoid")
- if humanoid then
- local animation = Instance.new("Animation")
- animation.AnimationId = "rbxassetid://17274903927"
- local animationTrack = humanoid:LoadAnimation(animation)
- animationTrack:Play()
- end
- local args = {
- [1] = "rbxassetid://147722910",
- [2] = game:GetService("Players").LocalPlayer.Character.Torso
- }
- game:GetService("ReplicatedStorage").PlaySoundRemote:InvokeServer(unpack(args))
- local args = {
- [1] = "Ban Hammer"
- }
- game:GetService("ReplicatedStorage").RetroAbility:FireServer(unpack(args))
- end)
- buttonsCreated = true
- end
- end
- StartButton.MouseButton1Click:Connect(function()
- if not buttonsCreated then
- createButtons()
- end
- end)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-5,-5,15))
- local player = game.Players.LocalPlayer
- local character = player.Character or player.CharacterAdded:Wait()
- local humanoid = character:FindFirstChild("Humanoid")
- if humanoid then
- local animation = Instance.new("Animation")
- animation.AnimationId = "rbxassetid://13675136513"
- local animationTrack = humanoid:LoadAnimation(animation)
- animationTrack:Play()
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement