Advertisement
Upscalefanatic3

KNIFE CAPSULE TARGETER

Oct 14th, 2017
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.81 KB | None | 0 0
  1. -- press e to start teleporting to your targets
  2. _G.whitelist = {['AbrahamShotFirst']=true--[[tbh me]],['Evanbear1']=true,['NewVoids']=true--[[l33t scripper josh @ v3rm]]} -- this excludes players from teleporting to them and reking them
  3. enabled = false
  4. game:GetService('RunService').Heartbeat:connect(function()
  5. local a = game.Players.LocalPlayer.PlayerGui:FindFirstChild('TrackerBillboard')
  6. if a and a.Adornee ~= nil and not _G.whitelist[a.Adornee.Parent.Name] and enabled then -- maybe could've done this better
  7. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.PlayerGui.TrackerBillboard.Adornee.CFrame
  8. end
  9. end)
  10. game:GetService('UserInputService').InputBegan:connect(function(k)
  11. if k.KeyCode == Enum.KeyCode.E then
  12. enabled = not enabled
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement