Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- press e to start teleporting to your targets
- _G.whitelist = {['AbrahamShotFirst']=true--[[tbh me]],['Evanbear1']=true,['NewVoids']=true--[[l33t scripper josh @ v3rm]]} -- this excludes players from teleporting to them and reking them
- enabled = false
- game:GetService('RunService').Heartbeat:connect(function()
- local a = game.Players.LocalPlayer.PlayerGui:FindFirstChild('TrackerBillboard')
- if a and a.Adornee ~= nil and not _G.whitelist[a.Adornee.Parent.Name] and enabled then -- maybe could've done this better
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.PlayerGui.TrackerBillboard.Adornee.CFrame
- end
- end)
- game:GetService('UserInputService').InputBegan:connect(function(k)
- if k.KeyCode == Enum.KeyCode.E then
- enabled = not enabled
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement