Advertisement
SCRIPTERIMPOSTER

obby creator script (working)

Nov 26th, 2021
473
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.69 KB | None | 0 0
  1. --IMPOSSIBLE OBBY SCRIPT
  2. --YEALETFNG#1693
  3.  
  4.  
  5. -- Instances:
  6.  
  7. local VibeCheck = Instance.new("ScreenGui")
  8. local OpenFrame = Instance.new("Frame")
  9. local Logo = Instance.new("ImageLabel")
  10. local OpenButton = Instance.new("TextButton")
  11. local RemoveGUI = Instance.new("TextButton")
  12. local MainFrame = Instance.new("Frame")
  13. local Logo2 = Instance.new("ImageLabel")
  14. local CloseButton = Instance.new("TextButton")
  15. local ExecuteScript = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. VibeCheck.Name = "VibeCheck"
  20. VibeCheck.Parent = game.CoreGui
  21.  
  22. OpenFrame.Name = "OpenFrame"
  23. OpenFrame.Parent = VibeCheck
  24. OpenFrame.BackgroundColor3 = Color3.new(0.603922, 0.0784314, 0.67451)
  25. OpenFrame.BackgroundTransparency = 0.25
  26. OpenFrame.BorderColor3 = Color3.new(0.407843, 0.0509804, 0.462745)
  27. OpenFrame.BorderSizePixel = 5
  28. OpenFrame.Position = UDim2.new(0.397371709, 0, 0.184743747, 0)
  29. OpenFrame.Size = UDim2.new(0, 256, 0, 127)
  30. OpenFrame.Draggable = true
  31. OpenFrame.Active = true
  32.  
  33. Logo.Name = "Logo"
  34. Logo.Parent = OpenFrame
  35. Logo.BackgroundColor3 = Color3.new(1, 1, 1)
  36. Logo.BackgroundTransparency = 1
  37. Logo.BorderSizePixel = 0
  38. Logo.Position = UDim2.new(0.0546875, 0, 0.047244098, 0)
  39. Logo.Size = UDim2.new(0, 227, 0, 57)
  40. Logo.Image = "http://www.roblox.com/asset/?id=4575481701"
  41.  
  42. OpenButton.Name = "OpenButton"
  43. OpenButton.Parent = OpenFrame
  44. OpenButton.BackgroundColor3 = Color3.new(0.129412, 0.603922, 0.0235294)
  45. OpenButton.BorderColor3 = Color3.new(0.0901961, 0.423529, 0.0117647)
  46. OpenButton.BorderSizePixel = 5
  47. OpenButton.Position = UDim2.new(0.06640625, 0, 0.61811024, 0)
  48. OpenButton.Size = UDim2.new(0, 131, 0, 32)
  49. OpenButton.Font = Enum.Font.Cartoon
  50. OpenButton.Text = "Open"
  51. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  52. OpenButton.TextScaled = true
  53. OpenButton.TextSize = 14
  54. OpenButton.TextWrapped = true
  55. OpenButton.MouseButton1Down:connect(function()
  56. MainFrame.Visible = true -- Makes the gui visible
  57. OpenFrame.Visible = false -- Makes the open button invisible
  58. end)
  59.  
  60.  
  61. RemoveGUI.Name = "RemoveGUI"
  62. RemoveGUI.Parent = OpenFrame
  63. RemoveGUI.BackgroundColor3 = Color3.new(0.721569, 0, 0)
  64. RemoveGUI.BorderColor3 = Color3.new(0.454902, 0, 0)
  65. RemoveGUI.BorderSizePixel = 5
  66. RemoveGUI.Position = UDim2.new(0.673645258, 0, 0.610517502, 0)
  67. RemoveGUI.Size = UDim2.new(0, 68, 0, 32)
  68. RemoveGUI.Font = Enum.Font.Cartoon
  69. RemoveGUI.Text = "Remove GUI"
  70. RemoveGUI.TextColor3 = Color3.new(1, 1, 1)
  71. RemoveGUI.TextScaled = true
  72. RemoveGUI.TextSize = 14
  73. RemoveGUI.TextWrapped = true
  74. RemoveGUI.MouseButton1Down:connect(function()
  75. print("Wait a second to delete the VIBE CHECK GUI")
  76. wait(1)
  77. VibeCheck:Remove()
  78. print("VIBE CHECK GUI REMOVED")
  79. end)
  80.  
  81.  
  82. MainFrame.Name = "MainFrame"
  83. MainFrame.Parent = VibeCheck
  84. MainFrame.BackgroundColor3 = Color3.new(0.603922, 0.0784314, 0.67451)
  85. MainFrame.BackgroundTransparency = 0.25
  86. MainFrame.BorderColor3 = Color3.new(0.407843, 0.0509804, 0.462745)
  87. MainFrame.BorderSizePixel = 5
  88. MainFrame.Position = UDim2.new(0.39674592, 0, 0.356376648, 0)
  89. MainFrame.Size = UDim2.new(0, 395, 0, 196)
  90. MainFrame.Visible = false
  91. MainFrame.Draggable = true
  92. MainFrame.Active = true
  93.  
  94. Logo2.Name = "Logo2"
  95. Logo2.Parent = MainFrame
  96. Logo2.BackgroundColor3 = Color3.new(1, 1, 1)
  97. Logo2.BackgroundTransparency = 1
  98. Logo2.BorderSizePixel = 0
  99. Logo2.Position = UDim2.new(0.0369659811, 0, 0.0574481748, 0)
  100. Logo2.Size = UDim2.new(0, 227, 0, 57)
  101. Logo2.Image = "http://www.roblox.com/asset/?id=4575481701"
  102.  
  103. CloseButton.Name = "CloseButton"
  104. CloseButton.Parent = MainFrame
  105. CloseButton.BackgroundColor3 = Color3.new(0.721569, 0, 0)
  106. CloseButton.BorderColor3 = Color3.new(0.454902, 0, 0)
  107. CloseButton.BorderSizePixel = 5
  108. CloseButton.Position = UDim2.new(0.673645198, 0, 0.0829584524, 0)
  109. CloseButton.Size = UDim2.new(0, 117, 0, 45)
  110. CloseButton.Font = Enum.Font.Cartoon
  111. CloseButton.Text = "Close"
  112. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  113. CloseButton.TextScaled = true
  114. CloseButton.TextSize = 14
  115. CloseButton.TextWrapped = true
  116. CloseButton.MouseButton1Down:connect(function()
  117. MainFrame.Visible = false-- Makes the gui visible
  118. OpenFrame.Visible = true-- Makes the open button invisible
  119. end)
  120.  
  121.  
  122. ExecuteScript.Name = "ExecuteScript"
  123. ExecuteScript.Parent = MainFrame
  124. ExecuteScript.BackgroundColor3 = Color3.new(0.0666667, 0.360784, 0.721569)
  125. ExecuteScript.BorderColor3 = Color3.new(0.0313726, 0.188235, 0.380392)
  126. ExecuteScript.BorderSizePixel = 5
  127. ExecuteScript.Position = UDim2.new(0.0457970724, 0, 0.506427824, 0)
  128. ExecuteScript.Size = UDim2.new(0, 365, 0, 63)
  129. ExecuteScript.Font = Enum.Font.Cartoon
  130. ExecuteScript.Text = "Remove Kill Parts"
  131. ExecuteScript.TextColor3 = Color3.new(1, 1, 1)
  132. ExecuteScript.TextScaled = true
  133. ExecuteScript.TextSize = 14
  134. ExecuteScript.TextWrapped = true
  135. ExecuteScript.MouseButton1Down:connect(function()
  136. for i,v in pairs(game.Workspace:GetChildren()) do
  137. if v:IsA("Part") and v:FindFirstChild("Script") then
  138. v:Destroy()
  139. end
  140. end
  141. end)
  142. RAW Paste Data
  143. --IMPOSSIBLE OBBY SCRIPT
  144. --YEALETFNG#1693
  145.  
  146.  
  147. -- Instances:
  148.  
  149. local VibeCheck = Instance.new("ScreenGui")
  150. local OpenFrame = Instance.new("Frame")
  151. local Logo = Instance.new("ImageLabel")
  152. local OpenButton = Instance.new("TextButton")
  153. local RemoveGUI = Instance.new("TextButton")
  154. local MainFrame = Instance.new("Frame")
  155. local Logo2 = Instance.new("ImageLabel")
  156. local CloseButton = Instance.new("TextButton")
  157. local ExecuteScript = Instance.new("TextButton")
  158.  
  159. --Properties:
  160.  
  161. VibeCheck.Name = "VibeCheck"
  162. VibeCheck.Parent = game.CoreGui
  163.  
  164. OpenFrame.Name = "OpenFrame"
  165. OpenFrame.Parent = VibeCheck
  166. OpenFrame.BackgroundColor3 = Color3.new(0.603922, 0.0784314, 0.67451)
  167. OpenFrame.BackgroundTransparency = 0.25
  168. OpenFrame.BorderColor3 = Color3.new(0.407843, 0.0509804, 0.462745)
  169. OpenFrame.BorderSizePixel = 5
  170. OpenFrame.Position = UDim2.new(0.397371709, 0, 0.184743747, 0)
  171. OpenFrame.Size = UDim2.new(0, 256, 0, 127)
  172. OpenFrame.Draggable = true
  173. OpenFrame.Active = true
  174.  
  175. Logo.Name = "Logo"
  176. Logo.Parent = OpenFrame
  177. Logo.BackgroundColor3 = Color3.new(1, 1, 1)
  178. Logo.BackgroundTransparency = 1
  179. Logo.BorderSizePixel = 0
  180. Logo.Position = UDim2.new(0.0546875, 0, 0.047244098, 0)
  181. Logo.Size = UDim2.new(0, 227, 0, 57)
  182. Logo.Image = "http://www.roblox.com/asset/?id=4575481701"
  183.  
  184. OpenButton.Name = "OpenButton"
  185. OpenButton.Parent = OpenFrame
  186. OpenButton.BackgroundColor3 = Color3.new(0.129412, 0.603922, 0.0235294)
  187. OpenButton.BorderColor3 = Color3.new(0.0901961, 0.423529, 0.0117647)
  188. OpenButton.BorderSizePixel = 5
  189. OpenButton.Position = UDim2.new(0.06640625, 0, 0.61811024, 0)
  190. OpenButton.Size = UDim2.new(0, 131, 0, 32)
  191. OpenButton.Font = Enum.Font.Cartoon
  192. OpenButton.Text = "Open"
  193. OpenButton.TextColor3 = Color3.new(1, 1, 1)
  194. OpenButton.TextScaled = true
  195. OpenButton.TextSize = 14
  196. OpenButton.TextWrapped = true
  197. OpenButton.MouseButton1Down:connect(function()
  198. MainFrame.Visible = true -- Makes the gui visible
  199. OpenFrame.Visible = false -- Makes the open button invisible
  200. end)
  201.  
  202.  
  203. RemoveGUI.Name = "RemoveGUI"
  204. RemoveGUI.Parent = OpenFrame
  205. RemoveGUI.BackgroundColor3 = Color3.new(0.721569, 0, 0)
  206. RemoveGUI.BorderColor3 = Color3.new(0.454902, 0, 0)
  207. RemoveGUI.BorderSizePixel = 5
  208. RemoveGUI.Position = UDim2.new(0.673645258, 0, 0.610517502, 0)
  209. RemoveGUI.Size = UDim2.new(0, 68, 0, 32)
  210. RemoveGUI.Font = Enum.Font.Cartoon
  211. RemoveGUI.Text = "Remove GUI"
  212. RemoveGUI.TextColor3 = Color3.new(1, 1, 1)
  213. RemoveGUI.TextScaled = true
  214. RemoveGUI.TextSize = 14
  215. RemoveGUI.TextWrapped = true
  216. RemoveGUI.MouseButton1Down:connect(function()
  217. print("Wait a second to delete the VIBE CHECK GUI")
  218. wait(1)
  219. VibeCheck:Remove()
  220. print("VIBE CHECK GUI REMOVED")
  221. end)
  222.  
  223.  
  224. MainFrame.Name = "MainFrame"
  225. MainFrame.Parent = VibeCheck
  226. MainFrame.BackgroundColor3 = Color3.new(0.603922, 0.0784314, 0.67451)
  227. MainFrame.BackgroundTransparency = 0.25
  228. MainFrame.BorderColor3 = Color3.new(0.407843, 0.0509804, 0.462745)
  229. MainFrame.BorderSizePixel = 5
  230. MainFrame.Position = UDim2.new(0.39674592, 0, 0.356376648, 0)
  231. MainFrame.Size = UDim2.new(0, 395, 0, 196)
  232. MainFrame.Visible = false
  233. MainFrame.Draggable = true
  234. MainFrame.Active = true
  235.  
  236. Logo2.Name = "Logo2"
  237. Logo2.Parent = MainFrame
  238. Logo2.BackgroundColor3 = Color3.new(1, 1, 1)
  239. Logo2.BackgroundTransparency = 1
  240. Logo2.BorderSizePixel = 0
  241. Logo2.Position = UDim2.new(0.0369659811, 0, 0.0574481748, 0)
  242. Logo2.Size = UDim2.new(0, 227, 0, 57)
  243. Logo2.Image = "http://www.roblox.com/asset/?id=4575481701"
  244.  
  245. CloseButton.Name = "CloseButton"
  246. CloseButton.Parent = MainFrame
  247. CloseButton.BackgroundColor3 = Color3.new(0.721569, 0, 0)
  248. CloseButton.BorderColor3 = Color3.new(0.454902, 0, 0)
  249. CloseButton.BorderSizePixel = 5
  250. CloseButton.Position = UDim2.new(0.673645198, 0, 0.0829584524, 0)
  251. CloseButton.Size = UDim2.new(0, 117, 0, 45)
  252. CloseButton.Font = Enum.Font.Cartoon
  253. CloseButton.Text = "Close"
  254. CloseButton.TextColor3 = Color3.new(1, 1, 1)
  255. CloseButton.TextScaled = true
  256. CloseButton.TextSize = 14
  257. CloseButton.TextWrapped = true
  258. CloseButton.MouseButton1Down:connect(function()
  259. MainFrame.Visible = false-- Makes the gui visible
  260. OpenFrame.Visible = true-- Makes the open button invisible
  261. end)
  262.  
  263.  
  264. ExecuteScript.Name = "ExecuteScript"
  265. ExecuteScript.Parent = MainFrame
  266. ExecuteScript.BackgroundColor3 = Color3.new(0.0666667, 0.360784, 0.721569)
  267. ExecuteScript.BorderColor3 = Color3.new(0.0313726, 0.188235, 0.380392)
  268. ExecuteScript.BorderSizePixel = 5
  269. ExecuteScript.Position = UDim2.new(0.0457970724, 0, 0.506427824, 0)
  270. ExecuteScript.Size = UDim2.new(0, 365, 0, 63)
  271. ExecuteScript.Font = Enum.Font.Cartoon
  272. ExecuteScript.Text = "Remove Kill Parts"
  273. ExecuteScript.TextColor3 = Color3.new(1, 1, 1)
  274. ExecuteScript.TextScaled = true
  275. ExecuteScript.TextSize = 14
  276. ExecuteScript.TextWrapped = true
  277. ExecuteScript.MouseButton1Down:connect(function()
  278. for i,v in pairs(game.Workspace:GetChildren()) do
  279. if v:IsA("Part") and v:FindFirstChild("Script") then
  280. v:Destroy()
  281. end
  282. end
  283. end)
  284.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement