Advertisement
MindOfPlayer

pro prison life v

Jul 17th, 2020
7,680
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 21.30 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local Pro_prison_life_GUI = Instance.new("ScreenGui")
  7. local topmain = Instance.new("Frame")
  8. local close = Instance.new("TextButton")
  9. local open = Instance.new("TextButton")
  10. local title = Instance.new("TextLabel")
  11. local main = Instance.new("Frame")
  12. local performance_mode = Instance.new("TextButton")
  13. local all_items = Instance.new("TextButton")
  14. local keycard = Instance.new("TextButton")
  15. local teams = Instance.new("TextLabel")
  16. local re = Instance.new("TextButton")
  17. local inmate = Instance.new("TextButton")
  18. local neutral = Instance.new("TextButton")
  19. local guard = Instance.new("TextButton")
  20. local crim = Instance.new("TextButton")
  21. local line = Instance.new("TextLabel")
  22.  
  23. --Properties:
  24.  
  25. Pro_prison_life_GUI.Name = "Pro_prison_life_GUI"
  26. Pro_prison_life_GUI.Parent = game.CoreGui
  27.  
  28. topmain.Name = "topmain"
  29. topmain.Parent = Pro_prison_life_GUI
  30. topmain.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  31. topmain.BorderSizePixel = 0
  32. topmain.Position = UDim2.new(0.729228914, 0, 0.0625000075, 0)
  33. topmain.Size = UDim2.new(0, 150, 0, 30)
  34. topmain.Visible = true
  35. topmain.Active = true
  36. topmain.Draggable = true
  37.  
  38. close.Name = "close"
  39. close.Parent = topmain
  40. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  41. close.BackgroundTransparency = 1.000
  42. close.Position = UDim2.new(0.88007164, 0, 0, 0)
  43. close.Size = UDim2.new(0, 17, 0, 29)
  44. close.Visible = false
  45. close.Font = Enum.Font.SourceSans
  46. close.Text = "-"
  47. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  48. close.TextSize = 30.000
  49. close.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  50. close.MouseButton1Down:connect(function()
  51. main.Visible = false
  52. open.Visible = true
  53. close.Visible = false  
  54. end)
  55.  
  56. open.Name = "open"
  57. open.Parent = topmain
  58. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  59. open.BackgroundTransparency = 1.000
  60. open.Position = UDim2.new(0.88007164, 0, 0, 0)
  61. open.Size = UDim2.new(0, 17, 0, 29)
  62. open.Font = Enum.Font.SourceSans
  63. open.Text = "+"
  64. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  65. open.TextSize = 30.000
  66. open.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  67. open.MouseButton1Down:connect(function()
  68. main.Visible = true
  69. open.Visible = false
  70. close.Visible = true       
  71. end)
  72.  
  73. title.Name = "title"
  74. title.Parent = topmain
  75. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  76. title.BackgroundTransparency = 1.000
  77. title.Position = UDim2.new(0.0425622463, 0, 0.129166678, 0)
  78. title.Size = UDim2.new(0, 114, 0, 21)
  79. title.Font = Enum.Font.SourceSans
  80. title.Text = "Pro prison life Gui"
  81. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  82. title.TextSize = 18.000
  83. title.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  84.  
  85. main.Name = "main"
  86. main.Parent = topmain
  87. main.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  88. main.BorderSizePixel = 0
  89. main.Position = UDim2.new(0, 0, 1.13055503, 0)
  90. main.Size = UDim2.new(0, 150, 0, 250)
  91. main.Visible = false
  92.  
  93. performance_mode.Name = "performance_ mode"
  94. performance_mode.Parent = main
  95. performance_mode.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  96. performance_mode.BorderColor3 = Color3.fromRGB(255, 255, 255)
  97. performance_mode.Position = UDim2.new(0.166333348, 0, 0.030608641, 0)
  98. performance_mode.Size = UDim2.new(0, 100, 0, 30)
  99. performance_mode.Font = Enum.Font.SourceSans
  100. performance_mode.Text = "performance mode"
  101. performance_mode.TextColor3 = Color3.fromRGB(255, 255, 255)
  102. performance_mode.TextSize = 14.000
  103. performance_mode.MouseButton1Down:connect(function()
  104. game:GetService("Lighting").Brightness = 2
  105. game:GetService("Lighting").ClockTime = 14
  106. game:GetService("Lighting").FogEnd = 100000
  107. game:GetService("Lighting").GlobalShadows = false
  108. game:GetService("Lighting").OutdoorAmbient = Color3.fromRGB(128, 128, 128)
  109. for _, v in pairs(game:GetDescendants()) do
  110.     pcall(function()
  111.         v.Material = Enum.Material.Plastic
  112.     end)
  113. end
  114. end)
  115.  
  116. all_items.Name = "all_items"
  117. all_items.Parent = main
  118. all_items.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  119. all_items.BorderColor3 = Color3.fromRGB(255, 255, 255)
  120. all_items.Position = UDim2.new(0.166333348, 0, 0.189521685, 0)
  121. all_items.Size = UDim2.new(0, 100, 0, 30)
  122. all_items.Font = Enum.Font.SourceSans
  123. all_items.Text = "all items"
  124. all_items.TextColor3 = Color3.fromRGB(255, 255, 255)
  125. all_items.TextSize = 14.000
  126. all_items.MouseButton1Down:connect(function()
  127. for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  128. OwO = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  129. end
  130. local slot1={"Remington 870"}
  131. local slot2={"AK-47"}
  132. local slot3={"M9"}
  133. game.Players.LocalPlayer.CharacterAdded:Connect(function(Character)
  134. wait(0.01)
  135. for Y,Z in pairs(workspace.Prison_ITEMS.giver:GetChildren())do if Z.Name==slot1[1]then local lol=workspace.Remote.ItemHandler:InvokeServer(Z.ITEMPICKUP)end end
  136. wait(0.1)
  137. for Y,Z in pairs(workspace.Prison_ITEMS.giver:GetChildren())do if Z.Name==slot2[1]then local lol=workspace.Remote.ItemHandler:InvokeServer(Z.ITEMPICKUP)end end
  138. wait(0.1)
  139. for Y,Z in pairs(workspace.Prison_ITEMS.giver:GetChildren())do if Z.Name==slot3[1]then local lol=workspace.Remote.ItemHandler:InvokeServer(Z.ITEMPICKUP)end end
  140. end)
  141. end)
  142. keycard.Name = "keycard"
  143. keycard.Parent = main
  144. keycard.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  145. keycard.BorderColor3 = Color3.fromRGB(255, 255, 255)
  146. keycard.Position = UDim2.new(0.166333348, 0, 0.34908691, 0)
  147. keycard.Size = UDim2.new(0, 100, 0, 30)
  148. keycard.Font = Enum.Font.SourceSans
  149. keycard.Text = "Find keycard"
  150. keycard.TextColor3 = Color3.fromRGB(255, 255, 255)
  151. keycard.TextSize = 14.000
  152. keycard.MouseButton1Down:connect(function()
  153. game.StarterGui:SetCore("SendNotification", {
  154.     Title = "KeyCard Finder";
  155.     Text = "Looking For Dropped KeyCards...";
  156.     Duration = 1;
  157. })
  158.    
  159.     local Remote = game.Workspace.Remote['ItemHandler']
  160.  
  161. local Arguments = {
  162.         [1] = Workspace.Prison_ITEMS.single:WaitForChild("Key card").ITEMPICKUP
  163. }
  164. game.StarterGui:SetCore("SendNotification", {
  165.     Title = "KeyCard Finder";
  166.     Text = "KeyCard Found!";
  167.     Duration = 1;
  168. })
  169. Remote:InvokeServer(unpack(Arguments))
  170. end)
  171. teams.Name = "teams"
  172. teams.Parent = main
  173. teams.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  174. teams.BackgroundTransparency = 1.000
  175. teams.BorderColor3 = Color3.fromRGB(255, 255, 255)
  176. teams.Position = UDim2.new(0.306333005, 0, 0.46626085, 0)
  177. teams.Size = UDim2.new(0, 58, 0, 23)
  178. teams.Font = Enum.Font.SourceSans
  179. teams.Text = "Teams"
  180. teams.TextColor3 = Color3.fromRGB(255, 255, 255)
  181. teams.TextScaled = true
  182. teams.TextSize = 14.000
  183. teams.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  184. teams.TextWrapped = true
  185.  
  186. re.Name = "re"
  187. re.Parent = main
  188. re.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  189. re.BorderColor3 = Color3.fromRGB(255, 255, 255)
  190. re.Position = UDim2.new(0.299666345, 0, 0.850304365, 0)
  191. re.Size = UDim2.new(0, 59, 0, 30)
  192. re.Font = Enum.Font.SourceSans
  193. re.Text = "Re"
  194. re.TextColor3 = Color3.fromRGB(255, 255, 255)
  195. re.TextSize = 14.000
  196. re.MouseButton1Down:connect(function()
  197.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  198.         game:GetService("StarterGui"):SetCore("SendNotification", {
  199.         Title = "Position Saved";
  200.         Text = "Success";
  201.         })
  202.         local A_1 = "LocalPlayer"
  203.  
  204. local Event = game:GetService("Workspace").Remote.loadchar
  205. Event:InvokeServer(A_1)
  206.  
  207.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  208.         game:GetService("StarterGui"):SetCore("SendNotification", {
  209.         Title = "Position Loaded";
  210.         Text = "Success";
  211.         })
  212. end)
  213. inmate.Name = "inmate"
  214. inmate.Parent = main
  215. inmate.BackgroundColor3 = Color3.fromRGB(218, 133, 65)
  216. inmate.BorderSizePixel = 0
  217. inmate.Position = UDim2.new(0.506333351, 0, 0.590999961, 0)
  218. inmate.Size = UDim2.new(0, 30, 0, 30)
  219. inmate.Font = Enum.Font.SourceSans
  220. inmate.Text = ""
  221. inmate.TextColor3 = Color3.fromRGB(0, 0, 0)
  222. inmate.TextSize = 14.000
  223. inmate.MouseButton1Down:connect(function()
  224. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  225. end)
  226. neutral.Name = "neutral"
  227. neutral.Parent = main
  228. neutral.BorderColor3 = Color3.fromRGB(163, 162, 165)
  229. neutral.BorderSizePixel = 0
  230. neutral.Position = UDim2.new(0.692999661, 0, 0.590999901, 0)
  231. neutral.Size = UDim2.new(0, 30, 0, 30)
  232. neutral.Font = Enum.Font.SourceSans
  233. neutral.Text = ""
  234. neutral.TextColor3 = Color3.fromRGB(0, 0, 0)
  235. neutral.TextSize = 14.000
  236. neutral.MouseButton1Down:connect(function()
  237. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  238. end)
  239. guard.Name = "guard"
  240. guard.Parent = main
  241. guard.BackgroundColor3 = Color3.fromRGB(13, 105, 172)
  242. guard.BorderColor3 = Color3.fromRGB(13, 105, 172)
  243. guard.BorderSizePixel = 0
  244. guard.Position = UDim2.new(0.306333303, 0, .590999961, 0)
  245. guard.Size = UDim2.new(0, 30, 0, 30)
  246. guard.Font = Enum.Font.SourceSans
  247. guard.Text = ""
  248. guard.TextColor3 = Color3.fromRGB(0, 0, 0)
  249. guard.TextSize = 14.000
  250. guard.MouseButton1Down:connect(function()
  251. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  252. end)   
  253.    
  254. crim.Name = "crim"
  255. crim.Parent = main
  256. crim.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  257. crim.BorderSizePixel = 0
  258. crim.Position = UDim2.new(0.10633301, 0, .590999961, 0)
  259. crim.Size = UDim2.new(0, 30, 0, 30)
  260. crim.Font = Enum.Font.SourceSans
  261. crim.Text = ""
  262. crim.TextColor3 = Color3.fromRGB(0, 0, 0)
  263. crim.TextSize = 14.000
  264. crim.MouseButton1Down:connect(function()
  265. LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  266. LCS.CanCollide = false
  267. LCS.Size = Vector3.new(51.05, 24.12, 54.76)
  268. LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  269. LCS.Transparency = 1
  270. wait(0.5)
  271. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  272. LCS.Size = Vector3.new(6, 0.2, 6)
  273. LCS.Transparency = 0
  274. end)
  275.  
  276. line.Name = "line"
  277. line.Parent = topmain
  278. line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  279. line.BorderSizePixel = 0
  280. line.Position = UDim2.new(-0.000804662704, 0, 0.986111641, 0)
  281. line.Size = UDim2.new(0, 150, 0, 5)
  282. line.Font = Enum.Font.SourceSans
  283. line.Text = ""
  284. line.TextColor3 = Color3.fromRGB(0, 0, 0)
  285. line.TextSize = 14.000
  286.  
  287. -- Scripts:
  288.  
  289. local function CEQO_fake_script() -- line.LocalScript
  290.     local script = Instance.new('LocalScript', line)
  291.  
  292.     function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  293.    
  294.     counter = 0
  295.    
  296.     while wait(0.1)do
  297.     script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  298.      
  299.      counter = counter + 0.003
  300.     end
  301. end
  302. coroutine.wrap(CEQO_fake_script)()
  303. wait()
  304. -- Gui to Lua
  305. -- Version: 3.2
  306.  
  307. -- Instances:
  308.  
  309. local ScreenGui = Instance.new("ScreenGui")
  310. local topmain = Instance.new("Frame")
  311. local close = Instance.new("TextButton")
  312. local open = Instance.new("TextButton")
  313. local title = Instance.new("TextLabel")
  314. local main = Instance.new("Frame")
  315. local policebase = Instance.new("TextButton")
  316. local prisonyard = Instance.new("TextButton")
  317. local criminalbase = Instance.new("TextButton")
  318. local escape = Instance.new("TextButton")
  319. local yard = Instance.new("TextButton")
  320. local cafeteria = Instance.new("TextButton")
  321. local SecretRoom = Instance.new("TextButton")
  322. local line = Instance.new("TextLabel")
  323.  
  324. --Properties:
  325.  
  326. ScreenGui.Parent = game.CoreGui
  327.  
  328. topmain.Name = "topmain"
  329. topmain.Parent = ScreenGui
  330. topmain.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  331. topmain.BorderSizePixel = 0
  332. topmain.Position = UDim2.new(0.61166513, 0, 0.061111182, 0)
  333. topmain.Size = UDim2.new(0, 150, 0, 30)
  334. topmain.Visible = true
  335. topmain.Active = true
  336. topmain.Draggable = true
  337.  
  338. close.Name = "close"
  339. close.Parent = topmain
  340. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  341. close.BackgroundTransparency = 1.000
  342. close.Position = UDim2.new(0.88007164, 0, 0, 0)
  343. close.Size = UDim2.new(0, 17, 0, 29)
  344. close.Visible = false
  345. close.Font = Enum.Font.SourceSans
  346. close.Text = "-"
  347. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  348. close.TextSize = 30.000
  349. close.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  350. close.MouseButton1Down:connect(function()
  351. main.Visible = false
  352. open.Visible = true
  353. close.Visible = false  
  354. end)
  355.  
  356. open.Name = "open"
  357. open.Parent = topmain
  358. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  359. open.BackgroundTransparency = 1.000
  360. open.Position = UDim2.new(0.88007164, 0, 0, 0)
  361. open.Size = UDim2.new(0, 17, 0, 29)
  362. open.Font = Enum.Font.SourceSans
  363. open.Text = "+"
  364. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  365. open.TextSize = 30.000
  366. open.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  367. open.MouseButton1Down:connect(function()
  368. main.Visible = true
  369. open.Visible = false
  370. close.Visible = true       
  371. end)
  372. title.Name = "title"
  373. title.Parent = topmain
  374. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  375. title.BackgroundTransparency = 1.000
  376. title.Position = UDim2.new(0.0425622463, 0, 0.129166678, 0)
  377. title.Size = UDim2.new(0, 114, 0, 21)
  378. title.Font = Enum.Font.SourceSans
  379. title.Text = "Prison life TP GUI"
  380. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  381. title.TextSize = 18.000
  382. title.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  383.  
  384. main.Name = "main"
  385. main.Parent = topmain
  386. main.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  387. main.BorderSizePixel = 0
  388. main.Position = UDim2.new(0, 0, 1.13055503, 0)
  389. main.Size = UDim2.new(0, 150, 0, 250)
  390. main.Visible = false
  391.  
  392. policebase.Name = "police base"
  393. policebase.Parent = main
  394. policebase.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  395. policebase.BorderColor3 = Color3.fromRGB(255, 255, 255)
  396. policebase.Position = UDim2.new(0.166333422, 0, 0.0383041948, 0)
  397. policebase.Size = UDim2.new(0, 100, 0, 25)
  398. policebase.Font = Enum.Font.SourceSans
  399. policebase.Text = "police base"
  400. policebase.TextColor3 = Color3.fromRGB(255, 255, 255)
  401. policebase.TextSize = 14.000
  402. policebase.MouseButton1Down:connect(function()
  403. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(825.684448, 99.9900055, 2259.62866)
  404. end)
  405.  
  406. prisonyard.Name = "prison yard"
  407. prisonyard.Parent = main
  408. prisonyard.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  409. prisonyard.BorderColor3 = Color3.fromRGB(255, 255, 255)
  410. prisonyard.Position = UDim2.new(0.166333437, 0, 0.162608668, 0)
  411. prisonyard.Size = UDim2.new(0, 100, 0, 25)
  412. prisonyard.Font = Enum.Font.SourceSans
  413. prisonyard.Text = "prison yard"
  414. prisonyard.TextColor3 = Color3.fromRGB(255, 255, 255)
  415. prisonyard.TextSize = 14.000
  416. prisonyard.MouseButton1Down:connect(function()
  417. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(810.254456, 97.9999466, 2451.28467)
  418. end)
  419.  
  420. criminalbase.Name = "criminal base"
  421. criminalbase.Parent = main
  422. criminalbase.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  423. criminalbase.BorderColor3 = Color3.fromRGB(255, 255, 255)
  424. criminalbase.Position = UDim2.new(0.166333556, 0, 0.286608666, 0)
  425. criminalbase.Size = UDim2.new(0, 100, 0, 25)
  426. criminalbase.Font = Enum.Font.SourceSans
  427. criminalbase.Text = "criminal base"
  428. criminalbase.TextColor3 = Color3.fromRGB(255, 255, 255)
  429. criminalbase.TextSize = 14.000
  430. criminalbase.MouseButton1Down:connect(function()
  431. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-902.612122, 94.1287842, 2061.04028)
  432. end)
  433. escape.Name = "escape"
  434. escape.Parent = main
  435. escape.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  436. escape.BorderColor3 = Color3.fromRGB(255, 255, 255)
  437. escape.Position = UDim2.new(0.166333437, 0, 0.414260924, 0)
  438. escape.Size = UDim2.new(0, 100, 0, 25)
  439. escape.Font = Enum.Font.SourceSans
  440. escape.Text = "escape"
  441. escape.TextColor3 = Color3.fromRGB(255, 255, 255)
  442. escape.TextSize = 14.000
  443. escape.MouseButton1Down:connect(function()
  444. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(318.416748, 75.5779572, 2220.01953)
  445. end)
  446. yard.Name = "yard"
  447. yard.Parent = main
  448. yard.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  449. yard.BorderColor3 = Color3.fromRGB(255, 255, 255)
  450. yard.Position = UDim2.new(0.166333437, 0, 0.546608806, 0)
  451. yard.Size = UDim2.new(0, 100, 0, 25)
  452. yard.Font = Enum.Font.SourceSans
  453. yard.Text = "yard"
  454. yard.TextColor3 = Color3.fromRGB(255, 255, 255)
  455. yard.TextSize = 14.000
  456. yard.MouseButton1Down:connect(function()
  457. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(779.092, 96.001, 2451.114)
  458. end)
  459. cafeteria.Name = "cafeteria"
  460. cafeteria.Parent = main
  461. cafeteria.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  462. cafeteria.BorderColor3 = Color3.fromRGB(255, 255, 255)
  463. cafeteria.Position = UDim2.new(0.166333437, 0, 0.678304195, 0)
  464. cafeteria.Size = UDim2.new(0, 100, 0, 25)
  465. cafeteria.Font = Enum.Font.SourceSans
  466. cafeteria.Text = "cafeteria"
  467. cafeteria.TextColor3 = Color3.fromRGB(255, 255, 255)
  468. cafeteria.TextSize = 14.000
  469. cafeteria.MouseButton1Down:connect(function()
  470. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(930, 97.54, 2291)
  471. end)
  472. SecretRoom.Name = "Secret Room"
  473. SecretRoom.Parent = main
  474. SecretRoom.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  475. SecretRoom.BorderColor3 = Color3.fromRGB(255, 255, 255)
  476. SecretRoom.Position = UDim2.new(0.159666747, 0, 0.810304284, 0)
  477. SecretRoom.Size = UDim2.new(0, 100, 0, 25)
  478. SecretRoom.Font = Enum.Font.SourceSans
  479. SecretRoom.Text = "Secret Room"
  480. SecretRoom.TextColor3 = Color3.fromRGB(255, 255, 255)
  481. SecretRoom.TextSize = 14.000
  482. SecretRoom.MouseButton1Down:connect(function()
  483. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(697, 97.492, 2364)
  484. end)
  485.  
  486. line.Name = "line"
  487. line.Parent = topmain
  488. line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  489. line.BorderSizePixel = 0
  490. line.Position = UDim2.new(-0.000804662704, 0, 0.986111641, 0)
  491. line.Size = UDim2.new(0, 150, 0, 5)
  492. line.Font = Enum.Font.SourceSans
  493. line.Text = ""
  494. line.TextColor3 = Color3.fromRGB(0, 0, 0)
  495. line.TextSize = 14.000
  496.  
  497. -- Scripts:
  498.  
  499. local function FERS_fake_script() -- line.LocalScript
  500.     local script = Instance.new('LocalScript', line)
  501.  
  502.     function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  503.    
  504.     counter = 0
  505.    
  506.     while wait(0.1)do
  507.     script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  508.      
  509.      counter = counter + 0.002
  510.     end
  511. end
  512. coroutine.wrap(FERS_fake_script)()
  513. wait()
  514. -- Gui to Lua
  515. -- Version: 3.2
  516.  
  517. -- Instances:
  518.  
  519. local ScreenGui = Instance.new("ScreenGui")
  520. local topmain = Instance.new("Frame")
  521. local close = Instance.new("TextButton")
  522. local open = Instance.new("TextButton")
  523. local title = Instance.new("TextLabel")
  524. local main = Instance.new("Frame")
  525. local TextButton = Instance.new("TextButton")
  526. local line = Instance.new("TextLabel")
  527.  
  528. --Properties:
  529.  
  530. ScreenGui.Parent = game.CoreGui
  531.  
  532. topmain.Name = "topmain"
  533. topmain.Parent = ScreenGui
  534. topmain.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  535. topmain.BorderSizePixel = 0
  536. topmain.Position = UDim2.new(0.853874743, 0, 0.061111182, 0)
  537. topmain.Size = UDim2.new(0, 150, 0, 30)
  538. topmain.Visible = true
  539. topmain.Active = true
  540. topmain.Draggable = true
  541.  
  542. close.Name = "close"
  543. close.Parent = topmain
  544. close.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  545. close.BackgroundTransparency = 1.000
  546. close.Position = UDim2.new(0.88007164, 0, 0, 0)
  547. close.Size = UDim2.new(0, 17, 0, 29)
  548. close.Visible = false
  549. close.Font = Enum.Font.SourceSans
  550. close.Text = "-"
  551. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  552. close.TextSize = 30.000
  553. close.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  554. close.MouseButton1Down:connect(function()
  555. main.Visible = false
  556. open.Visible = true
  557. close.Visible = false  
  558. end)
  559.  
  560. open.Name = "open"
  561. open.Parent = topmain
  562. open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  563. open.BackgroundTransparency = 1.000
  564. open.Position = UDim2.new(0.88007164, 0, 0, 0)
  565. open.Size = UDim2.new(0, 17, 0, 29)
  566. open.Font = Enum.Font.SourceSans
  567. open.Text = "+"
  568. open.TextColor3 = Color3.fromRGB(255, 255, 255)
  569. open.TextSize = 30.000
  570. open.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  571. open.MouseButton1Down:connect(function()
  572. main.Visible = true
  573. open.Visible = false
  574. close.Visible = true       
  575. end)
  576.  
  577. title.Name = "title"
  578. title.Parent = topmain
  579. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  580. title.BackgroundTransparency = 1.000
  581. title.Position = UDim2.new(-0.00410481775, 0, 0, 0)
  582. title.Size = UDim2.new(0, 114, 0, 29)
  583. title.Font = Enum.Font.SourceSans
  584. title.Text = "credits"
  585. title.TextColor3 = Color3.fromRGB(255, 255, 255)
  586. title.TextSize = 40.000
  587. title.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  588.  
  589. main.Name = "main"
  590. main.Parent = topmain
  591. main.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  592. main.BorderSizePixel = 0
  593. main.Position = UDim2.new(0, 0, 1.13055503, 0)
  594. main.Size = UDim2.new(0, 150, 0, 60)
  595. main.Visible = false
  596.  
  597. TextButton.Parent = main
  598. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  599. TextButton.BackgroundTransparency = 1.000
  600. TextButton.Position = UDim2.new(0.0866668224, 0, 0.166667223, 0)
  601. TextButton.Size = UDim2.new(0, 124, 0, 38)
  602. TextButton.Font = Enum.Font.SourceSans
  603. TextButton.Text = "Soul#4086"
  604. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  605. TextButton.TextScaled = true
  606. TextButton.TextSize = 14.000
  607. TextButton.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  608. TextButton.TextWrapped = true
  609.  
  610. line.Name = "line"
  611. line.Parent = topmain
  612. line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  613. line.BorderSizePixel = 0
  614. line.Position = UDim2.new(-0.000804662704, 0, 0.986111641, 0)
  615. line.Size = UDim2.new(0, 150, 0, 5)
  616. line.Font = Enum.Font.SourceSans
  617. line.Text = ""
  618. line.TextColor3 = Color3.fromRGB(0, 0, 0)
  619. line.TextSize = 14.000
  620.  
  621. -- Scripts:
  622.  
  623. local function NKNKS_fake_script() -- line.LocalScript
  624.     local script = Instance.new('LocalScript', line)
  625.  
  626.     function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  627.    
  628.     counter = 0
  629.    
  630.     while wait(0.1)do
  631.     script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  632.      
  633.      counter = counter + 0.002
  634.     end
  635. end
  636. coroutine.wrap(NKNKS_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement