Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Farewell infortality
- -- Revamp by ImFrostic, Version 2.81
- -- Objects
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local BFG = Instance.new("TextButton")
- local Speed = Instance.new("TextButton")
- local JPflip = Instance.new("TextButton")
- local JP = Instance.new("TextButton")
- local Anims = Instance.new("TextButton")
- local Weapon = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local TextLabel_2 = Instance.new("TextLabel")
- -- Properties
- ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
- Frame.Parent = ScreenGui
- Frame.Active = true
- Frame.BackgroundColor3 = Color3.new(1, 0.666667, 1)
- Frame.BorderSizePixel = 3
- Frame.Position = UDim2.new(0.0346964076, 0, 0.169491529, 0)
- Frame.Size = UDim2.new(0, 389, 0, 169)
- Frame.Draggable = true
- BFG.Name = "BFG"
- BFG.Parent = Frame
- BFG.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
- BFG.BackgroundTransparency = 0.5
- BFG.BorderColor3 = Color3.new(0, 0, 0)
- BFG.BorderSizePixel = 0
- BFG.Position = UDim2.new(0.0299727526, 0, 0.236124411, 0)
- BFG.Size = UDim2.new(0, 115, 0, 36)
- BFG.Font = Enum.Font.Fantasy
- BFG.Text = "BFG"
- BFG.TextColor3 = Color3.new(0, 0, 0)
- BFG.TextSize = 20
- BFG.MouseButton1Down:connect(function()
- local plr = game.Players.LocalPlayer
- local h = game:GetService('RunService').Heartbeat
- local m = plr:GetMouse()
- local bfg = false
- local prefix = "."
- plr.Chatted:connect(function(cmd)
- cmd=cmd:lower()
- if cmd == prefix.."bfg" then
- bfg = not bfg
- end
- end)
- m.Button1Down:connect(function()
- h:wait()
- if bfg == true then
- if plr.Character:FindFirstChild('Uzi') then plr.Character.Uzi.Fire:FireServer(m.Hit) end
- if plr.Character:FindFirstChild('Shotty') then plr.Character.Shotty.Fire:FireServer(m.Hit) end
- if plr.Character:FindFirstChild('Glock') then plr.Character.Glock.Fire:FireServer(m.Hit) end
- if plr.Character:FindFirstChild('Sawed Off') then plr.Character["Sawed Off"].Fire:FireServer(m.Hit) end
- end
- end)
- function start()
- while true do
- h:wait()
- if bfg == true then
- if plr.Backpack:FindFirstChild('Uzi') then
- plr.Backpack.Uzi.Parent = plr.Character
- h:wait()
- elseif plr.Backpack:FindFirstChild('Shotty') then
- plr.Backpack.Shotty.Parent = plr.Character
- h:wait()
- elseif plr.Backpack:FindFirstChild("Glock") then
- plr.Backpack.Glock.Parent = plr.Character
- h:wait()
- elseif plr.Backpack:FindFirstChild("Sawed Off") then
- plr.Backpack["Sawed Off"].Parent = plr.Character
- h:wait()
- end
- end
- end
- end
- start()
- end)
- Speed.Name = "Speed"
- Speed.Parent = Frame
- Speed.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
- Speed.BackgroundTransparency = 0.5
- Speed.BorderColor3 = Color3.new(0, 0, 0)
- Speed.BorderSizePixel = 0
- Speed.Position = UDim2.new(0.674824655, 0, 0.236124411, 0)
- Speed.Size = UDim2.new(0, 115, 0, 36)
- Speed.Font = Enum.Font.Fantasy
- Speed.Text = "Speed"
- Speed.TextColor3 = Color3.new(0, 0, 0)
- Speed.TextSize = 20
- Speed.MouseButton1Down:connect(function()
- local player=game.Players.LocalPlayer
- local mouse = player:GetMouse()
- local bodythurst=Instance.new("BodyThrust", player.Character.HumanoidRootPart)
- local speedy=false
- mouse.KeyDown:connect(function(key)
- if key:byte() == 48 then
- bodythurst.force=Vector3.new(0,0,-4000)
- end end)
- mouse.KeyUp:connect(function(key)
- if key:byte() == 48 then
- bodythurst.force=Vector3.new(0,0,0)
- end end)
- print"Loaded"
- end)
- JPflip.Name = "JPflip"
- JPflip.Parent = Frame
- JPflip.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
- JPflip.BackgroundTransparency = 0.5
- JPflip.BorderColor3 = Color3.new(0, 0, 0)
- JPflip.BorderSizePixel = 0
- JPflip.Position = UDim2.new(0.351190388, 0, 0.236124411, 0)
- JPflip.Size = UDim2.new(0, 115, 0, 36)
- JPflip.Font = Enum.Font.Fantasy
- JPflip.Text = "Jump Flip"
- JPflip.TextColor3 = Color3.new(0, 0, 0)
- JPflip.TextSize = 20
- JPflip.MouseButton1Click:connect (function()
- -- Created By Qerzty / Yurza --
- for _,v in pairs(game.Players.LocalPlayer.Character.Animate.jump:GetChildren()) do
- v.AnimationId = 'rbxassetid://229782914'
- end
- end)
- JP.Name = "JP"
- JP.Parent = Frame
- JP.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
- JP.BackgroundTransparency = 0.5
- JP.BorderColor3 = Color3.new(0, 0, 0)
- JP.BorderSizePixel = 0
- JP.Position = UDim2.new(0.0299727526, 0, 0.509984493, 0)
- JP.Size = UDim2.new(0, 115, 0, 36)
- JP.Font = Enum.Font.Fantasy
- JP.Text = "Jump power"
- JP.TextColor3 = Color3.new(0, 0, 0)
- JP.TextSize = 20
- JP.MouseButton1Down:connect(function()
- local jp = Vector3.new(0, 2500, 0)
- local obese = game:GetService('Players')
- local a = Instance.new("BodyForce")
- a.Parent = obese.LocalPlayer.Character.HumanoidRootPart
- a.Force = jp
- end)
- Anims.Name = "Anims"
- Anims.Parent = Frame
- Anims.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
- Anims.BackgroundTransparency = 0.5
- Anims.BorderColor3 = Color3.new(0, 0, 0)
- Anims.BorderSizePixel = 0
- Anims.Position = UDim2.new(0.674824655, 0, 0.509984493, 0)
- Anims.Size = UDim2.new(0, 115, 0, 36)
- Anims.Font = Enum.Font.Fantasy
- Anims.Text = "Animations"
- Anims.TextColor3 = Color3.new(0, 0, 0)
- Anims.TextSize = 20
- Anims.MouseButton1Click:connect (function()
- loadstring(game:GetObjects("rbxassetid://1295329334")[1].Source)()
- end)
- Weapon.Name = "Weapon"
- Weapon.Parent = Frame
- Weapon.BackgroundColor3 = Color3.new(0.494118, 1, 0.984314)
- Weapon.BackgroundTransparency = 0.5
- Weapon.BorderColor3 = Color3.new(0, 0, 0)
- Weapon.BorderSizePixel = 0
- Weapon.Position = UDim2.new(0.351190388, 0, 0.509984493, 0)
- Weapon.Size = UDim2.new(0, 115, 0, 36)
- Weapon.Font = Enum.Font.Fantasy
- Weapon.Text = "Wepon anims"
- Weapon.TextColor3 = Color3.new(0, 0, 0)
- Weapon.TextSize = 20
- Weapon.MouseButton1Click:connect (function()
- game.Players.LocalPlayer.Backpack.Punch.Punch1.AnimationId="rbxassetid://465400764"
- game.Players.LocalPlayer.Backpack.Punch.Punch2.AnimationId="rbxassetid://465401877"
- game.Players.LocalPlayer.Backpack.Punch.Punch3.AnimationId="rbxassetid://400424276"
- game.Players.LocalPlayer.Backpack.Punch.Punch4.AnimationId="rbxassetid://501014044"
- game.Players.LocalPlayer.Backpack.Punch.Running.AnimationId="rbxassetid://501022727"
- game.Players.LocalPlayer.Backpack.Punch.Info.AnimSpeed.Value = "1.5"
- game.Players.LocalPlayer.Backpack.Punch.Info.Cooldown.Value = "0.48"
- game.Players.LocalPlayer.Backpack.Machete.Idle.AnimationId="rbxassetid://422100597"
- game.Players.LocalPlayer.Backpack.Machete.Punch1.AnimationId="rbxassetid://503263392"
- game.Players.LocalPlayer.Backpack.Machete.Punch2.AnimationId="rbxassetid://552488357"
- game.Players.LocalPlayer.Backpack.Machete.Running.AnimationId="rbxassetid://341273975"
- game.Players.LocalPlayer.Backpack.Machete.Info.AnimSpeed.Value = "2"
- game.Players.LocalPlayer.Backpack.Machete.Info.Cooldown.Value = "0.58"
- game.Players.LocalPlayer.Backpack.Knife.GripUp = Vector3.new(0,0,1)
- game.Players.LocalPlayer.Backpack.Knife.GripRight = Vector3.new(0,0,1)
- game.Players.LocalPlayer.Backpack.Knife.Idle.AnimationId="rbxassetid://1320171223"
- game.Players.LocalPlayer.Backpack.Knife.Punch1.AnimationId="rbxassetid://186934753"
- game.Players.LocalPlayer.Backpack.Knife.Punch2.AnimationId="rbxassetid://186934658"
- game.Players.LocalPlayer.Backpack.Knife.Running.AnimationId="rbxassetid://218504594"
- game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Loaded.")
- end)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(0.0308483299, 0, 0.041420117, 0)
- TextLabel.Size = UDim2.new(0, 366, 0, 26)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "DrakSploit"
- TextLabel.TextColor3 = Color3.new(0, 0, 0)
- TextLabel.TextSize = 28
- TextLabel.TextWrapped = true
- TextLabel_2.Parent = Frame
- TextLabel_2.BackgroundColor3 = Color3.new(1, 0.831373, 1)
- TextLabel_2.BorderColor3 = Color3.new(0, 0, 0)
- TextLabel_2.BorderSizePixel = 0
- TextLabel_2.Position = UDim2.new(0.0308483299, 0, 0.772727251, 0)
- TextLabel_2.Size = UDim2.new(0, 366, 0, 27)
- TextLabel_2.Font = Enum.Font.Fantasy
- TextLabel_2.Text = "Made by drakaks"
- TextLabel_2.TextColor3 = Color3.new(0, 0, 0)
- TextLabel_2.TextSize = 18
- -- Scripts
Add Comment
Please, Sign In to add comment