Advertisement
BoboTheScripter

Untitled

Feb 19th, 2025
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.10 KB | None | 0 0
  1. local You = game.Players.LocalPlayer
  2. local ESP_ON = false
  3. local CTT_ON = false
  4. local UIS = game:GetService("UserInputService")
  5. local TweenService = game:GetService("TweenService")
  6. local Character = You.Character
  7. local Humanoid = Character:FindFirstChild("Humanoid") or Character:WaitForChild("Humanoid")
  8. local Mouse = You:GetMouse()
  9. local Camera = game.Workspace.Camera
  10. local SG = Instance.new("ScreenGui")
  11. SG.Parent = You.PlayerGui
  12. local F = Instance.new("Frame", SG)
  13. F.AnchorPoint = Vector2.new(.5, .5)
  14. F.Size = UDim2.new(0.478, 0,0.681, 0)
  15. F.Position = UDim2.new(0.5, 0, 0.5, 0)
  16. F.BackgroundColor3 = Color3.fromRGB(42, 48, 53)
  17. local UARC1 = Instance.new("UIAspectRatioConstraint", F)
  18. UARC1.AspectRatio = 1.767
  19. local UC1 = Instance.new("UICorner", F)
  20. UC1.CornerRadius = UDim.new(0, 13)
  21. local US1 = Instance.new("UIStroke", F)
  22. US1.Thickness = 5
  23. local TB = Instance.new("TextButton", F)
  24. TB.BackgroundColor3 = Color3.fromRGB(0,0,0)
  25. TB.Size = UDim2.new(0.473, 0,0.211, 0)
  26. TB.Position = UDim2.new(0.018, 0,0.393, 0)
  27. TB.TextColor3 = Color3.fromRGB(255, 255, 255)
  28. TB.Text = "ESP"
  29. TB.Font = Enum.Font.FredokaOne
  30. TB.TextScaled = true
  31. local UC2 = Instance.new("UICorner", TB)
  32. UC2.CornerRadius = UDim.new(0, 13)
  33. local TL1 = Instance.new("TextLabel", TB)
  34. TL1.Text = "Off"
  35. TL1.TextColor3 = Color3.fromRGB(255, 0, 0)
  36. TL1.BackgroundTransparency = 1
  37. TL1.Position = UDim2.new(0.355, 0,0.822, 0)
  38. TL1.Size = UDim2.new(0, 134,0, 40)
  39. TL1.Font = Enum.Font.FredokaOne
  40. TL1.TextScaled = true
  41. local TL2 = Instance.new("TextLabel", F)
  42. TL2.Position = UDim2.new(0.277, 0,0.018, 0)
  43. TL2.Size = UDim2.new(0.444, 0,0.2, 0)
  44. TL2.TextColor3 = Color3.fromRGB(255, 255, 255)
  45. TL2.Text = "BOBO HUB"
  46. TL2.TextScaled = true
  47. TL2.BackgroundTransparency = 1
  48. TL2.Font = Enum.Font.FredokaOne
  49. local US2 = Instance.new("UIStroke", TL2)
  50. US2.Thickness = 5
  51. local TB2 = Instance.new("TextButton", F)
  52. TB2.BackgroundColor3 = Color3.fromRGB(0,0,0)
  53. TB2.Size = UDim2.new(0.473, 0,0.211, 0)
  54. TB2.Position = UDim2.new(0.507, 0,0.393, 0)
  55. TB2.TextColor3 = Color3.fromRGB(255, 255, 255)
  56. TB2.Text = "FLY"
  57. TB2.Font = Enum.Font.FredokaOne
  58. TB2.TextScaled = true
  59. local UC3 = Instance.new("UICorner", TB2)
  60. UC2.CornerRadius = UDim.new(0, 13)
  61. local TL3 = Instance.new("TextLabel", TB2)
  62. TL3.Text = "Soon"
  63. TL3.TextColor3 = Color3.fromRGB(255, 0, 0)
  64. TL3.BackgroundTransparency = 1
  65. TL3.Position = UDim2.new(0.355, 0,0.822, 0)
  66. TL3.Size = UDim2.new(0, 134,0, 40)
  67. TL3.Font = Enum.Font.FredokaOne
  68. TL3.TextScaled = true
  69. local TB3 = Instance.new("TextButton", F)
  70. TB3.BackgroundColor3 = Color3.fromRGB(0,0,0)
  71. TB3.Size = UDim2.new(0.473, 0,0.211, 0)
  72. TB3.Position = UDim2.new(0.017, 0,0.653, 0)
  73. TB3.TextColor3 = Color3.fromRGB(255, 255, 255)
  74. TB3.Text = "CLICK TO TELEPORT"
  75. TB3.Font = Enum.Font.FredokaOne
  76. TB3.TextScaled = true
  77. local UC4 = Instance.new("UICorner", TB3)
  78. UC4.CornerRadius = UDim.new(0, 13)
  79. local TL4 = Instance.new("TextLabel", TB3)
  80. TL4.Text = "Off"
  81. TL4.TextColor3 = Color3.fromRGB(255, 0, 0)
  82. TL4.BackgroundTransparency = 1
  83. TL4.Position = UDim2.new(0.355, 0,0.822, 0)
  84. TL4.Size = UDim2.new(0, 134,0, 40)
  85. TL4.Font = Enum.Font.FredokaOne
  86. TL4.TextScaled = true
  87.  
  88. UIS.InputBegan:Connect(function(Input)
  89. if Input.KeyCode == Enum.KeyCode.P then
  90. SG.Enabled = not SG.Enabled
  91. end
  92. end)
  93.  
  94. game.Players.PlayerAdded:Connect(function(player)
  95. if ESP_ON == true then
  96. local Characters = player.Character or player.CharacterAdded:Wait()
  97. local BG = Instance.new("BillboardGui", Characters)
  98. BG.Size = UDim2.new(3,0,5,0)
  99. BG.AlwaysOnTop = true
  100. local F = Instance.new("Frame", BG)
  101. F.Size = UDim2.new(1,0,1,0)
  102. F.BackgroundColor = BrickColor.White()
  103. F.BackgroundTransparency = 0.4
  104. F.BorderSizePixel = 0
  105. local BG2 = Instance.new("BillboardGui", Characters.Head)
  106. BG2.Size = UDim2.new(6, 0, 1.5, 0)
  107. BG2.ExtentsOffset = Vector3.new(0, 2.5, 0)
  108. BG2.AlwaysOnTop = true
  109. local TL = Instance.new("TextLabel", BG2)
  110. TL.BackgroundTransparency = 1
  111. TL.Text = player.Name
  112. TL.Size = UDim2.new(1,0,1,0)
  113. TL.Font = Enum.Font.FredokaOne
  114. TL.TextScaled = true
  115. end
  116. end)
  117.  
  118. TB.MouseButton1Click:Connect(function()
  119. if ESP_ON == false then
  120. ESP_ON = true
  121. TL1.Text = "On"
  122. TL1.TextColor3 = Color3.fromRGB(0, 255, 0)
  123. for _, players in pairs(game.Players:GetPlayers()) do
  124. if not (players.Name == You.Name) then
  125. local Characters = players.Character or players.CharacterAdded:Wait()
  126. if not (Characters:FindFirstChildWhichIsA("Highlight")) then
  127. local BG = Instance.new("BillboardGui", Characters)
  128. BG.Size = UDim2.new(3,0,5,0)
  129. BG.AlwaysOnTop = true
  130. local F = Instance.new("Frame", BG)
  131. F.Size = UDim2.new(1,0,1,0)
  132. F.BackgroundColor = BrickColor.White()
  133. F.BackgroundTransparency = 0.4
  134. F.BorderSizePixel = 0
  135. local BG2 = Instance.new("BillboardGui", Characters.Head)
  136. BG2.Size = UDim2.new(6, 0, 1.5, 0)
  137. BG2.ExtentsOffset = Vector3.new(0, 2.5, 0)
  138. BG2.AlwaysOnTop = true
  139. local TL = Instance.new("TextLabel", BG2)
  140. TL.BackgroundTransparency = 1
  141. TL.Text = players.Name
  142. TL.Size = UDim2.new(1,0,1,0)
  143. TL.Font = Enum.Font.FredokaOne
  144. TL.TextScaled = true
  145. end
  146. end
  147. end
  148. else
  149. ESP_ON = false
  150. TL1.Text = "Off"
  151. TL1.TextColor3 = Color3.fromRGB(255, 0, 0)
  152. for _, players in pairs(game.Players:GetPlayers()) do
  153. if not (players.Name == You.Name) then
  154. local Characters = players.Character or players.CharacterAdded:Wait()
  155. if Characters:FindFirstChildWhichIsA("BillboardGui") then
  156. Characters:FindFirstChildWhichIsA("BillboardGui"):Destroy()
  157. Characters.Head.BillboardGui:Destroy()
  158. end
  159. end
  160. end
  161. end
  162. end)
  163.  
  164. TB3.MouseButton1Click:Connect(function()
  165. if CTT_ON == false then
  166. CTT_ON = true
  167. TL4.Text = "On"
  168. TL4.TextColor3 = Color3.fromRGB(0, 255, 0)
  169. else
  170. CTT_ON = false
  171. TL4.Text = "Off"
  172. TL4.TextColor3 = Color3.fromRGB(255, 0, 0)
  173. end
  174. end)
  175.  
  176. Mouse.Button1Up:Connect(function()
  177. if CTT_ON == true then
  178. local Target = Mouse.Target
  179. if Target:IsA("BasePart") then
  180. local X = Target.Position.X
  181. local Z = Target.Position.Z
  182. local Y = (Target.Position.Y + 10)
  183. Character:MoveTo(Vector3.new(X, Y, Z))
  184. end
  185. end
  186. end)
Tags: esp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement