Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local You = game.Players.LocalPlayer
- local ESP_ON = false
- local CTT_ON = false
- local UIS = game:GetService("UserInputService")
- local TweenService = game:GetService("TweenService")
- local Character = You.Character
- local Humanoid = Character:FindFirstChild("Humanoid") or Character:WaitForChild("Humanoid")
- local Mouse = You:GetMouse()
- local Camera = game.Workspace.Camera
- local SG = Instance.new("ScreenGui")
- SG.Parent = You.PlayerGui
- local F = Instance.new("Frame", SG)
- F.AnchorPoint = Vector2.new(.5, .5)
- F.Size = UDim2.new(0.478, 0,0.681, 0)
- F.Position = UDim2.new(0.5, 0, 0.5, 0)
- F.BackgroundColor3 = Color3.fromRGB(42, 48, 53)
- local UARC1 = Instance.new("UIAspectRatioConstraint", F)
- UARC1.AspectRatio = 1.767
- local UC1 = Instance.new("UICorner", F)
- UC1.CornerRadius = UDim.new(0, 13)
- local US1 = Instance.new("UIStroke", F)
- US1.Thickness = 5
- local TB = Instance.new("TextButton", F)
- TB.BackgroundColor3 = Color3.fromRGB(0,0,0)
- TB.Size = UDim2.new(0.473, 0,0.211, 0)
- TB.Position = UDim2.new(0.018, 0,0.393, 0)
- TB.TextColor3 = Color3.fromRGB(255, 255, 255)
- TB.Text = "ESP"
- TB.Font = Enum.Font.FredokaOne
- TB.TextScaled = true
- local UC2 = Instance.new("UICorner", TB)
- UC2.CornerRadius = UDim.new(0, 13)
- local TL1 = Instance.new("TextLabel", TB)
- TL1.Text = "Off"
- TL1.TextColor3 = Color3.fromRGB(255, 0, 0)
- TL1.BackgroundTransparency = 1
- TL1.Position = UDim2.new(0.355, 0,0.822, 0)
- TL1.Size = UDim2.new(0, 134,0, 40)
- TL1.Font = Enum.Font.FredokaOne
- TL1.TextScaled = true
- local TL2 = Instance.new("TextLabel", F)
- TL2.Position = UDim2.new(0.277, 0,0.018, 0)
- TL2.Size = UDim2.new(0.444, 0,0.2, 0)
- TL2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TL2.Text = "BOBO HUB"
- TL2.TextScaled = true
- TL2.BackgroundTransparency = 1
- TL2.Font = Enum.Font.FredokaOne
- local US2 = Instance.new("UIStroke", TL2)
- US2.Thickness = 5
- local TB2 = Instance.new("TextButton", F)
- TB2.BackgroundColor3 = Color3.fromRGB(0,0,0)
- TB2.Size = UDim2.new(0.473, 0,0.211, 0)
- TB2.Position = UDim2.new(0.507, 0,0.393, 0)
- TB2.TextColor3 = Color3.fromRGB(255, 255, 255)
- TB2.Text = "FLY"
- TB2.Font = Enum.Font.FredokaOne
- TB2.TextScaled = true
- local UC3 = Instance.new("UICorner", TB2)
- UC2.CornerRadius = UDim.new(0, 13)
- local TL3 = Instance.new("TextLabel", TB2)
- TL3.Text = "Soon"
- TL3.TextColor3 = Color3.fromRGB(255, 0, 0)
- TL3.BackgroundTransparency = 1
- TL3.Position = UDim2.new(0.355, 0,0.822, 0)
- TL3.Size = UDim2.new(0, 134,0, 40)
- TL3.Font = Enum.Font.FredokaOne
- TL3.TextScaled = true
- local TB3 = Instance.new("TextButton", F)
- TB3.BackgroundColor3 = Color3.fromRGB(0,0,0)
- TB3.Size = UDim2.new(0.473, 0,0.211, 0)
- TB3.Position = UDim2.new(0.017, 0,0.653, 0)
- TB3.TextColor3 = Color3.fromRGB(255, 255, 255)
- TB3.Text = "CLICK TO TELEPORT"
- TB3.Font = Enum.Font.FredokaOne
- TB3.TextScaled = true
- local UC4 = Instance.new("UICorner", TB3)
- UC4.CornerRadius = UDim.new(0, 13)
- local TL4 = Instance.new("TextLabel", TB3)
- TL4.Text = "Off"
- TL4.TextColor3 = Color3.fromRGB(255, 0, 0)
- TL4.BackgroundTransparency = 1
- TL4.Position = UDim2.new(0.355, 0,0.822, 0)
- TL4.Size = UDim2.new(0, 134,0, 40)
- TL4.Font = Enum.Font.FredokaOne
- TL4.TextScaled = true
- UIS.InputBegan:Connect(function(Input)
- if Input.KeyCode == Enum.KeyCode.P then
- SG.Enabled = not SG.Enabled
- end
- end)
- game.Players.PlayerAdded:Connect(function(player)
- if ESP_ON == true then
- local Characters = player.Character or player.CharacterAdded:Wait()
- local BG = Instance.new("BillboardGui", Characters)
- BG.Size = UDim2.new(3,0,5,0)
- BG.AlwaysOnTop = true
- local F = Instance.new("Frame", BG)
- F.Size = UDim2.new(1,0,1,0)
- F.BackgroundColor = BrickColor.White()
- F.BackgroundTransparency = 0.4
- F.BorderSizePixel = 0
- local BG2 = Instance.new("BillboardGui", Characters.Head)
- BG2.Size = UDim2.new(6, 0, 1.5, 0)
- BG2.ExtentsOffset = Vector3.new(0, 2.5, 0)
- BG2.AlwaysOnTop = true
- local TL = Instance.new("TextLabel", BG2)
- TL.BackgroundTransparency = 1
- TL.Text = player.Name
- TL.Size = UDim2.new(1,0,1,0)
- TL.Font = Enum.Font.FredokaOne
- TL.TextScaled = true
- end
- end)
- TB.MouseButton1Click:Connect(function()
- if ESP_ON == false then
- ESP_ON = true
- TL1.Text = "On"
- TL1.TextColor3 = Color3.fromRGB(0, 255, 0)
- for _, players in pairs(game.Players:GetPlayers()) do
- if not (players.Name == You.Name) then
- local Characters = players.Character or players.CharacterAdded:Wait()
- if not (Characters:FindFirstChildWhichIsA("Highlight")) then
- local BG = Instance.new("BillboardGui", Characters)
- BG.Size = UDim2.new(3,0,5,0)
- BG.AlwaysOnTop = true
- local F = Instance.new("Frame", BG)
- F.Size = UDim2.new(1,0,1,0)
- F.BackgroundColor = BrickColor.White()
- F.BackgroundTransparency = 0.4
- F.BorderSizePixel = 0
- local BG2 = Instance.new("BillboardGui", Characters.Head)
- BG2.Size = UDim2.new(6, 0, 1.5, 0)
- BG2.ExtentsOffset = Vector3.new(0, 2.5, 0)
- BG2.AlwaysOnTop = true
- local TL = Instance.new("TextLabel", BG2)
- TL.BackgroundTransparency = 1
- TL.Text = players.Name
- TL.Size = UDim2.new(1,0,1,0)
- TL.Font = Enum.Font.FredokaOne
- TL.TextScaled = true
- end
- end
- end
- else
- ESP_ON = false
- TL1.Text = "Off"
- TL1.TextColor3 = Color3.fromRGB(255, 0, 0)
- for _, players in pairs(game.Players:GetPlayers()) do
- if not (players.Name == You.Name) then
- local Characters = players.Character or players.CharacterAdded:Wait()
- if Characters:FindFirstChildWhichIsA("BillboardGui") then
- Characters:FindFirstChildWhichIsA("BillboardGui"):Destroy()
- Characters.Head.BillboardGui:Destroy()
- end
- end
- end
- end
- end)
- TB3.MouseButton1Click:Connect(function()
- if CTT_ON == false then
- CTT_ON = true
- TL4.Text = "On"
- TL4.TextColor3 = Color3.fromRGB(0, 255, 0)
- else
- CTT_ON = false
- TL4.Text = "Off"
- TL4.TextColor3 = Color3.fromRGB(255, 0, 0)
- end
- end)
- Mouse.Button1Up:Connect(function()
- if CTT_ON == true then
- local Target = Mouse.Target
- if Target:IsA("BasePart") then
- local X = Target.Position.X
- local Z = Target.Position.Z
- local Y = (Target.Position.Y + 10)
- Character:MoveTo(Vector3.new(X, Y, Z))
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement