Advertisement
1x1x1x1IAMbck

Jail script

May 15th, 2018
5,327
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.57 KB | None | 0 0
  1. -- dis is mah script , is made by maumaumaumaumaumau not by SezHu
  2. print("Permanent Jail Script Loading...")
  3. m = Instance.new("Message", workspace)
  4. m.Text = "Perm Jail Script Loaded!"
  5. wait(3)
  6. m:remove()
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local Frame = Instance.new("Frame")
  9. local Frame_2 = Instance.new("Frame")
  10. local Frame_3 = Instance.new("Frame")
  11. local TextBox = Instance.new("TextBox")
  12. local TextLabel = Instance.new("TextLabel")
  13. local TextButton = Instance.new("TextButton")
  14. local TextButton_2 = Instance.new("TextButton")
  15. local TextButton_3 = Instance.new("TextButton")
  16.  
  17. -- Properties
  18.  
  19. ScreenGui.Parent = game.Players.Sebastian_Morcinek.PlayerGui
  20. ScreenGui.ResetOnSpawn = true
  21.  
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  24. Frame.Position = UDim2.new(0.737903237, 0, 0.27765727, 0)
  25. Frame.Size = UDim2.new(0, 179, 0, 135)
  26.  
  27. Frame_2.Parent = Frame
  28. Frame_2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  29. Frame_2.BorderSizePixel = 0
  30. Frame_2.Size = UDim2.new(0, 179, 0, 15)
  31.  
  32. Frame_3.Parent = Frame
  33. Frame_3.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  34. Frame_3.BorderSizePixel = 0
  35. Frame_3.Position = UDim2.new(0.00558659201, 0, 0.111111112, 0)
  36. Frame_3.Size = UDim2.new(0, 178, 0, 6)
  37.  
  38. TextBox.Parent = Frame
  39. TextBox.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  40. TextBox.BorderSizePixel = 3
  41. TextBox.Position = UDim2.new(0.128855973, 0, 0.523435473, 0)
  42. TextBox.Size = UDim2.new(0, 132, 0, 20)
  43. TextBox.Font = Enum.Font.SourceSansBold
  44. TextBox.PlaceholderText = "Username"
  45. TextBox.Text = ""
  46. TextBox.TextColor3 = Color3.new(1, 1, 1)
  47. TextBox.TextSize = 14
  48.  
  49. TextLabel.Parent = Frame
  50. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  51. TextLabel.BackgroundTransparency = 1
  52. TextLabel.Position = UDim2.new(0.0471737385, 0, 0.15906769, 0)
  53. TextLabel.Size = UDim2.new(0, 161, 0, 50)
  54. TextLabel.Font = Enum.Font.SourceSansBold
  55. TextLabel.Text = "Jail A Player"
  56. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  57. TextLabel.TextSize = 20
  58.  
  59. TextButton.Parent = Frame
  60. TextButton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  61. TextButton.BorderSizePixel = 3
  62. TextButton.Position = UDim2.new(0.128491625, 0, 0.777777791, 0)
  63. TextButton.Size = UDim2.new(0, 132, 0, 19)
  64. TextButton.Font = Enum.Font.SourceSansBold
  65. TextButton.Text = "Jail"
  66. TextButton.TextColor3 = Color3.new(1, 1, 1)
  67. TextButton.TextSize = 14
  68. TextButton.MouseButton1Click:connect(function()
  69.     local plr = TextBox
  70.     p = Instance.new("Part",workspace)
  71.     p.Position = Vector3.new(28.06, 0.5, 113.835)
  72.     p.Anchored = true
  73.     p.Size = Vector3.new(4, 1, 4.09)
  74.     while true do
  75.         wait(0.4)
  76.         game.Players[plr.Text].Character.Torso.CFrame = CFrame.new(28.06, 5.0, 113.835)
  77.         end
  78.     end
  79. end)
  80.  
  81. TextButton_2.Parent = Frame
  82. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  83. TextButton_2.BackgroundTransparency = 1
  84. TextButton_2.Position = UDim2.new(0.905027926, 0, 0.111111119, 0)
  85. TextButton_2.Size = UDim2.new(0, 24, 0, 27)
  86. TextButton_2.Font = Enum.Font.SourceSansBold
  87. TextButton_2.Text = "X"
  88. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  89. TextButton_2.TextSize = 20
  90. TextButton_2.MouseButton1Click:connect(function()
  91.     TextButton_3.Visible = true
  92.     Frame.Visible = false
  93. end)
  94.  
  95. TextButton_3.Parent = ScreenGui
  96. TextButton_3.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  97. TextButton_3.BorderSizePixel = 3
  98. TextButton_3.Position = UDim2.new(0, 0, 0.453362256, 0)
  99. TextButton_3.Size = UDim2.new(0, 84, 0, 43)
  100. TextButton_3.Font = Enum.Font.SourceSansBold
  101. TextButton_3.Text = "Open Jail GUI"
  102. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  103. TextButton_3.TextSize = 14
  104. TextButton_3.MouseButton1Click:connect(function()
  105.     Frame.Visible = true
  106.     TextButton_3.Visible = false
  107. end)
  108. TextButton_3.Visible = false
  109.  
  110. game.Players.1x1xSebastian_Morcinekx1IAMbck.Character.Humanoid.MaxHealth = math.huge
  111. game.Players.Sebastian_Morcinek.Character.Humanoid.Health = 1e9
  112.  
  113. while true do
  114. wait(0.3)
  115. if game.Players.Sebastian_Morcinek.Character.Humanoid.Health == 0 then
  116.     wait(8)
  117. local ScreenGui = Instance.new("ScreenGui")
  118. local Frame = Instance.new("Frame")
  119. local Frame_2 = Instance.new("Frame")
  120. local Frame_3 = Instance.new("Frame")
  121. local TextBox = Instance.new("TextBox")
  122. local TextLabel = Instance.new("TextLabel")
  123. local TextButton = Instance.new("TextButton")
  124. local TextButton_2 = Instance.new("TextButton")
  125. local TextButton_3 = Instance.new("TextButton")
  126.  
  127. -- Properties
  128.  
  129. ScreenGui.Parent = game.Players.Sebastian_Morcinek.PlayerGui
  130. ScreenGui.ResetOnSpawn = false
  131.  
  132. Frame.Parent = ScreenGui
  133. Frame.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  134. Frame.Position = UDim2.new(0.737903237, 0, 0.27765727, 0)
  135. Frame.Size = UDim2.new(0, 179, 0, 135)
  136.  
  137. Frame_2.Parent = Frame
  138. Frame_2.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  139. Frame_2.BorderSizePixel = 0
  140. Frame_2.Size = UDim2.new(0, 179, 0, 15)
  141.  
  142. Frame_3.Parent = Frame
  143. Frame_3.BackgroundColor3 = Color3.new(0.0392157, 0.0392157, 0.0392157)
  144. Frame_3.BorderSizePixel = 0
  145. Frame_3.Position = UDim2.new(0.00558659201, 0, 0.111111112, 0)
  146. Frame_3.Size = UDim2.new(0, 178, 0, 6)
  147.  
  148. TextBox.Parent = Frame
  149. TextBox.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  150. TextBox.BorderSizePixel = 3
  151. TextBox.Position = UDim2.new(0.128855973, 0, 0.523435473, 0)
  152. TextBox.Size = UDim2.new(0, 132, 0, 20)
  153. TextBox.Font = Enum.Font.SourceSansBold
  154. TextBox.PlaceholderText = "Username"
  155. TextBox.Text = ""
  156. TextBox.TextColor3 = Color3.new(1, 1, 1)
  157. TextBox.TextSize = 14
  158.  
  159. TextLabel.Parent = Frame
  160. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  161. TextLabel.BackgroundTransparency = 1
  162. TextLabel.Position = UDim2.new(0.0471737385, 0, 0.15906769, 0)
  163. TextLabel.Size = UDim2.new(0, 161, 0, 50)
  164. TextLabel.Font = Enum.Font.SourceSansBold
  165. TextLabel.Text = "Jail A Player"
  166. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  167. TextLabel.TextSize = 20
  168.  
  169. TextButton.Parent = Frame
  170. TextButton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  171. TextButton.BorderSizePixel = 3
  172. TextButton.Position = UDim2.new(0.128491625, 0, 0.777777791, 0)
  173. TextButton.Size = UDim2.new(0, 132, 0, 19)
  174. TextButton.Font = Enum.Font.SourceSansBold
  175. TextButton.Text = "Jail"
  176. TextButton.TextColor3 = Color3.new(1, 1, 1)
  177. TextButton.TextSize = 14
  178. TextButton.MouseButton1Click:connect(function()
  179.     local plr = TextBox
  180.     p = Instance.new("Part",workspace)
  181.     p.Position = Vector3.new(28.06, 0.5, 113.835)
  182.     p.Anchored = true
  183.     p.Size = Vector3.new(4, 1, 4.09)
  184.     while true do
  185.         wait(0.4)
  186.         game.Players[plr.Text].Character.Torso.CFrame = CFrame.new(28.06, 5.0, 113.835)
  187.         end
  188.     end
  189. end)
  190.  
  191. TextButton_2.Parent = Frame
  192. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  193. TextButton_2.BackgroundTransparency = 1
  194. TextButton_2.Position = UDim2.new(0.905027926, 0, 0.111111119, 0)
  195. TextButton_2.Size = UDim2.new(0, 24, 0, 27)
  196. TextButton_2.Font = Enum.Font.SourceSansBold
  197. TextButton_2.Text = "X"
  198. TextButton_2.TextColor3 = Color3.new(1, 1, 1)
  199. TextButton_2.TextSize = 20
  200. TextButton_2.MouseButton1Click:connect(function()
  201.     TextButton_3.Visible = true
  202.     Frame.Visible = false
  203. end)
  204.  
  205. TextButton_3.Parent = ScreenGui
  206. TextButton_3.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  207. TextButton_3.BorderSizePixel = 3
  208. TextButton_3.Position = UDim2.new(0, 0, 0.453362256, 0)
  209. TextButton_3.Size = UDim2.new(0, 84, 0, 43)
  210. TextButton_3.Font = Enum.Font.SourceSansBold
  211. TextButton_3.Text = "Open Jail GUI"
  212. TextButton_3.TextColor3 = Color3.new(1, 1, 1)
  213. TextButton_3.TextSize = 14
  214. TextButton_3.MouseButton1Click:connect(function()
  215.     Frame.Visible = true
  216.     TextButton_3.Visible = false
  217. end)
  218. TextButton_3.Visible = false
  219. end
  220. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement