Advertisement
Meliodas0_0

Jailbreak enter car

Jan 20th, 2020
1,123
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.33 KB | None | 0 0
  1. Ok so, this allows you to enter a car's driver seat or passenger seat by pressing T or R when hovering over it.
  2. Driver : T
  3. Passenger : R
  4.  
  5. Code:
  6. -- cat#4023 is the best cat owo
  7.  
  8. local Mouse = game.Players.LocalPlayer:GetMouse()
  9.  
  10. local UIS = game:GetService("UserInputService")
  11. local deboune = false
  12.  
  13. local Client = {}
  14.  
  15. for i,v in pairs(debug.getregistry()) do
  16. if typeof(v) == "function" then
  17. for i2,v2 in pairs(debug.getupvalues(v)) do
  18. if typeof(v2) == "table" and v2.FireServer then
  19. Client.FireServerT = v2
  20. end
  21. end
  22. end
  23. end
  24.  
  25. UIS.InputBegan:Connect(function(Input)
  26. if Input.KeyCode == Enum.KeyCode.R then
  27. local Arguments = {
  28. [1] = "hqsi66uy",
  29. [2] = Mouse.Target.Parent,
  30. [3] = Mouse.Target.Parent.Passenger
  31. }
  32. Client.FireServerT:FireServer(unpack(Arguments))
  33. elseif Input.KeyCode == Enum.KeyCode.T then
  34. local Arguments2 = {
  35. [1] = "hqsi66uy",
  36. [2] = Mouse.Target.Parent,
  37. [3] = Mouse.Target.Parent.Seat
  38. }
  39. Client.FireServerT:FireServer(unpack(Arguments2))
  40. end
  41. end)
  42. print('Joe')
  43. I'd post the link but I'd just get called a ratter for the 3rd time.
  44. The car must be unlocked, and obviously, whatever seat you are trying to get into has to be empty.
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement