Advertisement
Guest User

Nba Phenom And Roblox Nba Finals-Roblox Aimbot Script {WORKS

a guest
Dec 19th, 2019
17,010
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.75 KB | None | 0 0
  1. Here is a New Roblox Nba Finals and Nba Phenom Aimbot Script-Roblox---->local Player = game:GetService("Players").LocalPlayer
  2. local UserInputService = game:GetService('UserInputService')
  3. local Power = 100
  4.  
  5. local gui = Instance.new("ScreenGui", Player.PlayerGui)
  6. local text = Instance.new("TextLabel", gui)
  7. text.Size = UDim2.new(0.1, 0, 0.1, 0)
  8. text.Position = UDim2.new(0.9, 0, 0.9, 0)
  9. text.TextScaled = true
  10. text.Text = Power
  11.  
  12. UserInputService.InputBegan:connect(function(InputObject, gameProcessedEvent)
  13. if not gameProcessedEvent and InputObject.KeyCode.Name == "Three" then
  14. Power = Power - 5
  15. text.Text = Power
  16. elseif not gameProcessedEvent and InputObject.KeyCode.Name == "Four" then
  17. Power = Power + 5
  18. text.Text = Power
  19. elseif not gameProcessedEvent and InputObject.KeyCode.Name == "Two" then
  20. for _, v in pairs(game:GetService("Workspace"):GetChildren()) do
  21. if v then
  22. local bal = v:FindFirstChild('Basketball')
  23. if bal then
  24. game.ReplicatedStorage.FolderService.Communications.Funcs:FireServer(bal, "Power", Power)
  25. end
  26. end
  27. end
  28. end
  29. end)
  30. local PlayerService = game:GetService('Players');
  31. local player = PlayerService.LocalPlayer;
  32. local cam = workspace.CurrentCamera;
  33. local Camera = {};
  34. local TrackHumanoid = false; -- If set to false, then this will only track players, else we will track NPCs and players.
  35. local enabled = false;
  36. local sleight = false;
  37. local UserInput = game:GetService('UserInputService');
  38.  
  39. if not gui then
  40. gui = Instance.new('BillboardGui');
  41. local frame = Instance.new('Frame', gui);
  42.  
  43. gui.AlwaysOnTop = true;
  44. gui.LightInfluence = 0;
  45. gui.Size = UDim2.new(0, 100, 0, 100);
  46. frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255);
  47. frame.BackgroundTransparency = .75;
  48. frame.Size = UDim2.new(1, 0, 1, 0);
  49. frame.Rotation = 45;
  50. frame.BorderSizePixel = 0;
  51. end;
  52.  
  53. function Camera:LockPlayer(p, isNPC)
  54. if isNPC == true then
  55. if p and p.Parent:IsA('Model') and p.Parent:FindFirstChild('Torso') then
  56. local t = p.Parent.Torso.CFrame * Vector3.new(0, -0.25, 0);
  57. cam.CFrame = CFrame.new(cam.Focus.p, t) * CFrame.new(0, 0, 0.5);
  58. gui.Parent = p.Parent.Torso;
  59. end;
  60. else
  61. if p and p.Character and p.Character:FindFirstChild('Torso') then
  62. local t = p.Character.Torso.CFrame * Vector3.new(0, -0.25, 0);
  63. cam.CFrame = CFrame.new(cam.Focus.p, t) * CFrame.new(0, 0, 0.5);
  64. gui.Parent = p.Character.Torso;
  65. end;
  66. end;
  67. end;
  68.  
  69.  
  70. game:GetService("RunService").RenderStepped:connect(function()
  71. if enabled == true then
  72. for _,v in pairs(PlayerService:GetChildren()) do
  73. if v:IsA('Player') and v.Character then
  74. if v.Character:FindFirstChildOfClass('Humanoid') and v.Character:FindFirstChildOfClass('Humanoid').Health > 0 then
  75. if v == player then
  76. else
  77. Camera:LockPlayer(v);
  78. end;
  79. end;
  80. end;
  81. end;
  82.  
  83. if TrackHumanoid==true then for _,v in pairs(workspace:GetDescendants()) do
  84. if v.Parent:IsA('Model') and v.Parent:FindFirstChildOfClass('Humanoid') and v.Parent:FindFirstChildOfClass('Humanoid').Health > 0 then
  85. if v.Parent.Name == player.Name then
  86. else
  87. Camera:LockPlayer(v, true);
  88. end;
  89. end;
  90. end;
  91. end;
  92. elseif enabled == false then
  93. if gui then
  94. gui.Parent = nil;
  95. end;
  96. end;
  97. end);
  98.  
  99. UserInput.InputBegan:connect(function(input)
  100. if input.KeyCode == Enum.KeyCode.LeftShift then
  101. sleight = not sleight;
  102. end;
  103. end);
  104.  
  105. UserInput.InputEnded:connect(function(input)
  106. if input.KeyCode == Enum.KeyCode.Insert and sleight == true then
  107. enabled = not enabled;
  108. end;
  109. end);
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement