Advertisement
Guest User

Usefule Jailbreak release lua information

a guest
Aug 19th, 2017
768
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.89 KB | None | 0 0
  1. --Thanks JailBreak Developers, for making me waste my time figuring out a simple work around with the hashes.
  2. --This will regardless work around hashes they put.
  3. --Since Players and Workspace are hashed, we can still do something to them them with GetService. Players is a Service, they just renamed it in the DataModel, we can still return Players and Workspace.
  4. --I made a unhasher, just its on the 7th line.
  5. --Scripts made by Deniality // Exploit Busters
  6.  
  7. --Unhashes all Models, Parts, etc.
  8. game:GetService("Workspace").Name="Workspace" -- Unhashes game.Workspace
  9. game:GetService("Players").Name="Players" --Unhashes game.Players
  10. game:GetService("ReplicatedStorage").Name="ReplicatedStorage" --Unhashes game.ReplicatedStorage
  11. for i,v in pairs(game.Workspace.Banks:GetChildren()) do
  12. v.Name="Bank" --Unhashes "Bank" and no, you cannot change the property without get children because it will error
  13. end
  14. for i,v in pairs(game.Workspace.Jewelrys:GetChildren()) do
  15. v.Name="Jewelry" --Unhashes "Jewelry" and no, you cannot change the property without get children because it will error
  16. end
  17.  
  18. --Remove Doors
  19. --We use "Workspace" since it's a global, that references to the Workspace.
  20. workspace.Doors:Destroy()
  21.  
  22. --Garage
  23. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-342.130798, 19.3135223, 1182.73669) + Vector3.new(1,0,0)
  24.  
  25. --Remove Bank Lasers and Jewelry Lasers
  26. game:GetService('Workspace').Jewelrys.Jewelry.Lasers:Destroy()
  27. game:GetService('Workspace').Jewelrys.Jewelry.Floor:Destroy()
  28. game:GetService('Workspace').Jewelrys.Jewelry.Model.BarbedWire:Destroy()
  29. game:GetService('Workspace').Jewelrys.Jewelry.Model.BarbedWire:Destroy()
  30. game:GetService('Workspace').Jewelrys.Jewelry.Model.BarbedWire:Destroy()
  31. game:GetService('Workspace').Jewelrys.Jewelry.Model.BarbedWire:Destroy()
  32. game:GetService('Workspace').Banks.Bank.Lasers:Destroy()
  33.  
  34. --Remove Vault Door and Trigger Dynamite
  35. game:GetService('Workspace').Banks.Bank.Door:Destroy()
  36. game:GetService('Workspace').Banks.Bank.TriggerDoor:Destroy()
  37.  
  38. --Infinite Ammo
  39. game:GetService('Players').LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked=true
  40.  
  41. --Remove Infinite Ammo
  42. game:GetService('Players').LocalPlayer.PlayerGui.ScreenGui.Ammo.MagSize.RobloxLocked=false
  43.  
  44. --Teleport to Bank
  45. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(1.1110189, 17.9213142, 782.103455) + Vector3.new(1,0,0)
  46.  
  47. --Teleport to Jewelry
  48. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(184.722824, 22.6513882, 1357.91418) + Vector3.new(1,0,0)
  49.  
  50. --Helicopter Base
  51. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1176.4231, 59.7911148, -1572.6908) + Vector3.new(1,0,0)
  52.  
  53. --Criminal Base
  54. game:GetService('Players').LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-222.339157, 17.9125443, 1575.82336) + Vector3.new(1,0,0)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement