Advertisement
Guest User

The Streets Remake aimlock

a guest
Apr 2nd, 2022
1,051
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. -- Credits for aphixe / he made the script
  2.  
  3. local Aimbot = Instance.new("ScreenGui")
  4. local TextLabel = Instance.new("TextLabel")
  5.  
  6. local Mouse = game.Players.LocalPlayer:GetMouse()
  7.  
  8. holdx = true
  9.  
  10. Aimbot.Name = "Aimbot"
  11. Aimbot.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. Aimbot.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13. Aimbot.ResetOnSpawn = false
  14.  
  15. TextLabel.Parent = Aimbot
  16. TextLabel.BackgroundColor3 = Color3.new(0.444511, 0.771695, 0.998947)
  17. TextLabel.BorderColor3 = Color3.new(0.39057, 0.39057, 0.39057)
  18. TextLabel.BorderSizePixel = 2
  19. TextLabel.Position = UDim2.new(0.75, 0, 0.75, 0)
  20. TextLabel.Size = UDim2.new(0, 132, 0, 50)
  21. TextLabel.Font = Enum.Font.Code
  22. TextLabel.Text = "Target: Nil"
  23. TextLabel.TextColor3 = Color3.new(0.19266, 0.192645, 0.192645)
  24. TextLabel.TextScaled = false
  25. TextLabel.TextSize = 15
  26. TextLabel.TextWrapped = true
  27. TextLabel.BackgroundTransparency = 1
  28.  
  29.  
  30. Mouse.KeyDown:Connect(function(key)
  31. if key == "q" then
  32. if Mouse.Target.Parent:FindFirstChild("Humanoid") then
  33. TextLabel.Text = Mouse.Target.Parent.Name
  34. end
  35. if Mouse.Target.Parent:IsA("Accessory") then
  36. TextLabel.Text = Mouse.Target.Parent.Parent.Name
  37. end
  38. end
  39. end)
  40.  
  41. Mouse.KeyDown:Connect(function(key)
  42. if key == "x" then
  43. holdx = true
  44. while holdx do
  45. game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool").Shoot:FireServer(game.Players:FindFirstChild(TextLabel.Text).Character.Torso.CFrame+game.Players:FindFirstChild(TextLabel.Text).Character.Torso.Velocity/7.8)
  46. wait(0.01)
  47. end
  48. end
  49. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement