skinkillaz

PRISON ROYALE 1

Aug 2nd, 2018
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 7.98 KB | None | 0 0
  1. --Made by OpTic Wisdom/LikeATrollFace
  2. --NateVang is still a skid
  3.  
  4. function onKeyPress(inputObject, gameProcessedEvent)
  5. if inputObject.KeyCode == Enum.KeyCode[centertp] then
  6. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Wall.Center.CFrame * CFrame.new(0, 100, 0)
  7. end
  8. end
  9.  
  10. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  11.  
  12. function onKeyPress(inputObject, gameProcessedEvent)
  13. if inputObject.KeyCode == Enum.KeyCode[lootbind] then
  14. for i,v in pairs(game.Workspace.Loot:GetChildren()) do
  15. v:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position)
  16. end
  17. end
  18. end
  19.  
  20. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  21.  
  22. function onKeyPress(inputObject, gameProcessedEvent)
  23. if inputObject.KeyCode == Enum.KeyCode[vehbind] then
  24. local randomPlayer = game.Workspace.Vehicles:GetChildren()[math.random(1,#game.Workspace.Vehicles:GetChildren())]
  25. if randomPlayer ~= nil then
  26. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = randomPlayer.Driver.CFrame
  27. print("TP'd to buggy")
  28. end
  29. end
  30. end
  31.  
  32. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  33.  
  34.  
  35.  
  36. -- Objects
  37.  
  38. local PUBGui = Instance.new("ScreenGui")
  39. local Main = Instance.new("Frame")
  40. local Keybinds = Instance.new("TextLabel")
  41. local gunbind = Instance.new("TextBox")
  42. local vehiclebind = Instance.new("TextBox")
  43. local TPtocriminal = Instance.new("TextLabel")
  44. local centerbind = Instance.new("TextBox")
  45. local Bringallloot = Instance.new("TextLabel")
  46. local TPtojewelry = Instance.new("TextLabel")
  47. local Sethplimit = Instance.new("TextLabel")
  48. local hpbind = Instance.new("TextLabel")
  49. local plus = Instance.new("TextButton")
  50. local minus = Instance.new("TextButton")
  51. local CLOSE = Instance.new("Frame")
  52. local OpenClose = Instance.new("TextButton")
  53.  
  54. -- Properties
  55.  
  56. PUBGui.Name = "PUBGui"
  57. PUBGui.Parent = game.CoreGui
  58.  
  59. Main.Name = "Main"
  60. Main.Parent = PUBGui
  61. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  62. Main.Position = UDim2.new(0.813616991, 0, 0.657933056, 0)
  63. Main.Size = UDim2.new(0.0489999987, 100, 0.157000005, 150)
  64.  
  65. Keybinds.Name = "Keybinds"
  66. Keybinds.Parent = Main
  67. Keybinds.BackgroundColor3 = Color3.new(1, 1, 1)
  68. Keybinds.BackgroundTransparency = 1
  69. Keybinds.Size = UDim2.new(-0.148571432, 200, 0, 50)
  70. Keybinds.Font = Enum.Font.SciFi
  71. Keybinds.FontSize = Enum.FontSize.Size24
  72. Keybinds.Text = "Keybinds:"
  73. Keybinds.TextSize = 24
  74.  
  75. gunbind.Name = "gunbind"
  76. gunbind.Parent = Main
  77. gunbind.BackgroundColor3 = Color3.new(1, 1, 1)
  78. gunbind.Position = UDim2.new(0.702857137, 0, 0.41921398, 0)
  79. gunbind.Size = UDim2.new(-0.908999979, 230, -0.0829999968, 50)
  80. gunbind.Font = Enum.Font.SourceSans
  81. gunbind.FontSize = Enum.FontSize.Size14
  82. gunbind.Text = "B"
  83. gunbind.TextSize = 14
  84.  
  85. vehiclebind.Name = "vehiclebind"
  86. vehiclebind.Parent = Main
  87. vehiclebind.BackgroundColor3 = Color3.new(1, 1, 1)
  88. vehiclebind.Position = UDim2.new(0.702857137, 0, 0.61572051, 0)
  89. vehiclebind.Size = UDim2.new(-0.908999979, 230, -0.0829999968, 50)
  90. vehiclebind.Font = Enum.Font.SourceSans
  91. vehiclebind.FontSize = Enum.FontSize.Size14
  92. vehiclebind.Text = "J"
  93. vehiclebind.TextSize = 14
  94.  
  95. TPtocriminal.Name = "TP to criminal"
  96. TPtocriminal.Parent = Main
  97. TPtocriminal.BackgroundColor3 = Color3.new(1, 1, 1)
  98. TPtocriminal.BackgroundTransparency = 1
  99. TPtocriminal.Position = UDim2.new(-0.0632911399, 0, 0.235576898, 0)
  100. TPtocriminal.Size = UDim2.new(-0.5, 200, -0.11057692, 50)
  101. TPtocriminal.Font = Enum.Font.SourceSans
  102. TPtocriminal.FontSize = Enum.FontSize.Size14
  103. TPtocriminal.Text = "TP to center"
  104. TPtocriminal.TextSize = 14
  105.  
  106. centerbind.Name = "centerbind"
  107. centerbind.Parent = Main
  108. centerbind.BackgroundColor3 = Color3.new(1, 1, 1)
  109. centerbind.Position = UDim2.new(0.702857137, 0, 0.227074236, 0)
  110. centerbind.Size = UDim2.new(-0.908999979, 230, -0.0829999968, 50)
  111. centerbind.ZIndex = 2
  112. centerbind.Font = Enum.Font.SourceSans
  113. centerbind.FontSize = Enum.FontSize.Size14
  114. centerbind.Text = "Z"
  115. centerbind.TextSize = 14
  116.  
  117. Bringallloot.Name = "Bring all loot"
  118. Bringallloot.Parent = Main
  119. Bringallloot.BackgroundColor3 = Color3.new(1, 1, 1)
  120. Bringallloot.BackgroundTransparency = 1
  121. Bringallloot.Position = UDim2.new(-0.0696202591, 0, 0.432692289, 0)
  122. Bringallloot.Size = UDim2.new(-0.5, 200, -0.11057692, 50)
  123. Bringallloot.Font = Enum.Font.SourceSans
  124. Bringallloot.FontSize = Enum.FontSize.Size14
  125. Bringallloot.Text = "Bring all loot"
  126. Bringallloot.TextSize = 14
  127.  
  128. TPtojewelry.Name = "TP to jewelry"
  129. TPtojewelry.Parent = Main
  130. TPtojewelry.BackgroundColor3 = Color3.new(1, 1, 1)
  131. TPtojewelry.BackgroundTransparency = 1
  132. TPtojewelry.Position = UDim2.new(-0.0727848113, 0, 0.627403855, 0)
  133. TPtojewelry.Size = UDim2.new(-0.5, 200, -0.11057692, 50)
  134. TPtojewelry.Font = Enum.Font.SourceSans
  135. TPtojewelry.FontSize = Enum.FontSize.Size14
  136. TPtojewelry.Text = "TP to vehicle"
  137. TPtojewelry.TextSize = 14
  138.  
  139. Sethplimit.Name = "Set hp limit"
  140. Sethplimit.Parent = Main
  141. Sethplimit.BackgroundColor3 = Color3.new(1, 1, 1)
  142. Sethplimit.BackgroundTransparency = 1
  143. Sethplimit.Position = UDim2.new(-0.0729999989, 0, 0.816999972, 0)
  144. Sethplimit.Size = UDim2.new(-0.5, 200, -0.11057692, 50)
  145. Sethplimit.Font = Enum.Font.SourceSans
  146. Sethplimit.FontSize = Enum.FontSize.Size14
  147. Sethplimit.Text = "Set hp limit"
  148. Sethplimit.TextSize = 14
  149.  
  150. hpbind.Name = "hpbind"
  151. hpbind.Parent = Main
  152. hpbind.BackgroundColor3 = Color3.new(1, 1, 1)
  153. hpbind.Position = UDim2.new(0.703000009, 0, 0.815999985, 0)
  154. hpbind.Size = UDim2.new(-0.908999979, 230, -0.0829999968, 50)
  155. hpbind.Font = Enum.Font.SourceSans
  156. hpbind.FontSize = Enum.FontSize.Size14
  157. hpbind.Text = "50"
  158. hpbind.TextSize = 14
  159.  
  160. plus.Name = "plus"
  161. plus.Parent = Main
  162. plus.BackgroundColor3 = Color3.new(1, 1, 1)
  163. plus.Position = UDim2.new(0.704999983, 0, 0.916000009, 0)
  164. plus.Size = UDim2.new(-0.908999979, 190, -0.103, 50)
  165. plus.Font = Enum.Font.SourceSans
  166. plus.FontSize = Enum.FontSize.Size14
  167. plus.Text = "+"
  168. plus.TextSize = 14
  169.  
  170. minus.Name = "minus"
  171. minus.Parent = Main
  172. minus.BackgroundColor3 = Color3.new(1, 1, 1)
  173. minus.Position = UDim2.new(0.819999993, 0, 0.916000009, 0)
  174. minus.Size = UDim2.new(-0.908999979, 190, -0.103, 50)
  175. minus.Font = Enum.Font.SourceSans
  176. minus.FontSize = Enum.FontSize.Size14
  177. minus.Text = "-"
  178. minus.TextSize = 14
  179.  
  180. CLOSE.Name = "CLOSE"
  181. CLOSE.Parent = PUBGui
  182. CLOSE.BackgroundColor3 = Color3.new(1, 1, 1)
  183. CLOSE.BackgroundTransparency = 1
  184. CLOSE.Position = UDim2.new(0.00457815826, 0, 0.937652767, 0)
  185. CLOSE.Size = UDim2.new(0.00130804442, 100, -0.0770171136, 100)
  186.  
  187. OpenClose.Name = "OpenClose"
  188. OpenClose.Parent = CLOSE
  189. OpenClose.BackgroundColor3 = Color3.new(1, 1, 1)
  190. OpenClose.Position = UDim2.new(0, 0, 0.0135135138, 0)
  191. OpenClose.Size = UDim2.new(-0.960784316, 200, -0.351351351, 50)
  192. OpenClose.Font = Enum.Font.SourceSans
  193. OpenClose.FontSize = Enum.FontSize.Size14
  194. OpenClose.Text = "Open/Close"
  195. OpenClose.TextSize = 14
  196.  
  197. function click()
  198. if game.CoreGui.PUBGui.Main.Visible == true then
  199. game.CoreGui.PUBGui.Main.Visible = false else
  200. game.CoreGui.PUBGui.Main.Visible = true
  201. end
  202. end
  203. game.CoreGui.PUBGui.CLOSE.OpenClose.MouseButton1Down:connect(click)
  204.  
  205. function click()
  206. hpmeme1 = tonumber(game.CoreGui.PUBGui.Main.hpbind.Text)
  207. game.CoreGui.PUBGui.Main.hpbind.Text = hpmeme1 + 10
  208. end
  209. game.CoreGui.PUBGui.Main.plus.MouseButton1Down:connect(click)
  210.  
  211. function click()
  212. hpmeme2 = tonumber(game.CoreGui.PUBGui.Main.hpbind.Text)
  213. game.CoreGui.PUBGui.Main.hpbind.Text = hpmeme2 - 10
  214. end
  215. game.CoreGui.PUBGui.Main.minus.MouseButton1Down:connect(click)
  216.  
  217.  
  218.  
  219. while true do
  220. wait()
  221. nicememe = tonumber(game.CoreGui.PUBGui.Main.hpbind.Text)
  222. vehnum = math.random(20)
  223. vehbind = game.CoreGui.PUBGui.Main.vehiclebind.Text
  224. lootbind = game.CoreGui.PUBGui.Main.gunbind.Text
  225. centertp = game.CoreGui.PUBGui.Main.centerbind.Text
  226. --kek(game.Players.LocalPlayer.PlayerGui.ScreenGui.Game.UI.Health.PressQText.Text, "%")
  227. if game.Players.LocalPlayer.Character.Humanoid.Health <= nicememe then
  228. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Workspace.Wall.Center.CFrame * CFrame.new(0, 100, 0)
  229. end
  230. end
Add Comment
Please, Sign In to add comment