Advertisement
wiktorexe

Untitled

Nov 19th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.71 KB | None | 0 0
  1. - if you leak you get the beat
  2.  
  3. local func
  4.  
  5. for _,a in pairs (debug.getregistry()) do
  6. if type(a)=='function' then
  7. if debug.getupvalues(a).RemoteCall and type(debug.getupvalues(a).RemoteCall)=='function' then
  8. func = debug.getupvalues(a).RemoteCall
  9. break
  10. end
  11. end
  12. end
  13.  
  14. game:GetService("UserInputService").InputBegan:connect(function(i,g)
  15. if i.KeyCode == Enum.KeyCode.E and not g then
  16. func("LeaveZone", workspace:FindFirstChild("MapFinish",true), tick())
  17. func("EnterZone", workspace:FindFirstChild("MapStart",true), tick())
  18. func("LeaveZone", workspace:FindFirstChild("MapStart",true), tick())
  19. func("EnterZone",workspace:FindFirstChild("MapFinish",true),tick()-2147483.647)
  20. end
  21. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement