Advertisement
Guest User

Untitled

a guest
Mar 19th, 2019
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.75 KB | None | 0 0
  1. --อ่านก่อนใช้นะไอสัด
  2. --เลื่อนลงไปด้านล่างแล้วจะมีตัวหนังสือไทยให้อ่านมันซ่ะ
  3. --ถ้ามึงไม่อ่านมึงก็จะแลคนะ
  4.  
  5. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver["Remington 870"].ITEMPICKUP
  6. local Event = game:GetService("Workspace").Remote.ItemHandler
  7. Event:InvokeServer(A_1)
  8.  
  9. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver["AK-47"].ITEMPICKUP
  10. local Event = game:GetService("Workspace").Remote.ItemHandler
  11. Event:InvokeServer(A_1)
  12.  
  13. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].giver["M9"].ITEMPICKUP
  14. local Event = game:GetService("Workspace").Remote.ItemHandler
  15. Event:InvokeServer(A_1)
  16.  
  17. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].single["Crude Knife"].ITEMPICKUP
  18. local Event = game:GetService("Workspace").Remote.ItemHandler
  19. Event:InvokeServer(A_1)
  20.  
  21. local A_1 = game:GetService("Workspace")["Prison_ITEMS"].single["Hammer"].ITEMPICKUP
  22. local Event = game:GetService("Workspace").Remote.ItemHandler
  23. Event:InvokeServer(A_1)
  24.  
  25. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(
  26. -976.389771, 109.328033, 2055.21997)+Vector3.new(1,0,0)
  27.  
  28. wait(2)
  29.  
  30. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame=CFrame.new(
  31. 929.201782, 99.9899597, 2256.79492)+Vector3.new(1,0,0)
  32.  
  33.  
  34.  
  35.  
  36.  
  37.  
  38.  
  39. --ถ้าโดนจับหรือตายให้ลบข้างล่างนี้
  40.  
  41.  
  42. local reg = (getreg or debug.getregistry)
  43. local get = (debug.getupvalues or secret953)
  44. local client = game:GetService("Players").LocalPlayer
  45. local render = game:GetService('RunService').RenderStepped
  46.  
  47. function start()
  48. local function fakeStats()
  49. function change(t)
  50. local myStats = {
  51. ReloadTime = 0,
  52. FireRate = 0,
  53. AutoFire = true,
  54. StoredAmmo = math.huge,
  55. MaxAmmo = math.huge,
  56. CurrentAmmo = math.huge,
  57. }
  58.  
  59. for name, fake in next, myStats do
  60. t[name] = fake
  61. end
  62. end
  63.  
  64. for k, v in next, reg() do
  65. if type(v) == "function" then
  66. local upvals = get(v)
  67. if upvals and upvals.GunStates then
  68. change(upvals.GunStates)
  69. end
  70. end
  71. end
  72. end
  73.  
  74. client.Backpack.ChildAdded:connect(function(child)
  75. if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
  76. client.Character.Humanoid:EquipTool(child)
  77.  
  78. render:wait()
  79. fakeStats()
  80. render:wait()
  81.  
  82. client.Character.Humanoid:UnequipTools()
  83. end
  84. end)
  85.  
  86. for _, child in next, client.Backpack:GetChildren() do
  87. if child:IsA("Tool") and child:FindFirstChild("GunInterface") then
  88. client.Character.Humanoid:EquipTool(child)
  89.  
  90. render:wait()
  91. fakeStats()
  92. render:wait()
  93.  
  94. client.Character.Humanoid:UnequipTools()
  95. end
  96. end
  97. end
  98.  
  99. start()
  100.  
  101. client.CharacterAdded:connect(start)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement