Advertisement
MindOfPlayer

prison life v

Apr 26th, 2020
10,082
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 17.92 KB | None | 0 0
  1. --made by Soul#4086 :P
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local Guns = Instance.new("TextButton")
  6. local Mod = Instance.new("TextButton")
  7. local AutoRespawn = Instance.new("TextButton")
  8. local KillAll = Instance.new("TextButton")
  9. local FlyingCar = Instance.new("TextButton")
  10. local SuperPunch = Instance.new("TextButton")
  11. local Neutral = Instance.new("TextButton")
  12. local Criminal = Instance.new("TextButton")
  13. local Inmate = Instance.new("TextButton")
  14. local Guard = Instance.new("TextButton")
  15. local line = Instance.new("TextLabel")
  16. local Title = Instance.new("TextLabel")
  17. local close = Instance.new("TextButton")
  18. local By = Instance.new("TextLabel")
  19. local openmain = Instance.new("Frame")
  20. local Open = Instance.new("TextButton")
  21.  
  22. --Properties:
  23.  
  24. ScreenGui.Parent = game.CoreGui
  25.  
  26. main.Name = "main"
  27. main.Parent = ScreenGui
  28. main.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  29. main.BorderColor3 = Color3.fromRGB(20, 20, 20)
  30. main.Position = UDim2.new(0.130677253, 0, 0.299765825, 0)
  31. main.Size = UDim2.new(0, 239, 0, 396)
  32. main.Visible = false
  33. main.Active = true
  34. main.Draggable = true
  35.  
  36. Guns.Name = "Guns"
  37. Guns.Parent = main
  38. Guns.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  39. Guns.BorderColor3 = Color3.fromRGB(255, 255, 255)
  40. Guns.Position = UDim2.new(0.209095031, 0, 0.141573384, 0)
  41. Guns.Size = UDim2.new(0, 137, 0, 23)
  42. Guns.Font = Enum.Font.SourceSans
  43. Guns.Text = "Guns"
  44. Guns.TextColor3 = Color3.fromRGB(255, 255, 255)
  45. Guns.TextScaled = true
  46. Guns.TextSize = 14.000
  47. Guns.TextWrapped = true
  48. Guns.MouseButton1Down:connect(function()
  49.     for i,v in pairs(Workspace.Prison_ITEMS.giver:GetChildren()) do
  50.  
  51. OwO = Workspace.Remote.ItemHandler:InvokeServer(v.ITEMPICKUP)
  52. end
  53. end)
  54.  
  55. Mod.Name = "Mod"
  56. Mod.Parent = main
  57. Mod.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  58. Mod.BorderColor3 = Color3.fromRGB(255, 255, 255)
  59. Mod.Position = UDim2.new(0.209095061, 0, 0.218761072, 0)
  60. Mod.Size = UDim2.new(0, 137, 0, 23)
  61. Mod.Font = Enum.Font.SourceSans
  62. Mod.Text = "Mod"
  63. Mod.TextColor3 = Color3.fromRGB(255, 255, 255)
  64. Mod.TextScaled = true
  65. Mod.TextSize = 14.000
  66. Mod.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  67. Mod.TextWrapped = true
  68. Mod.MouseButton1Down:connect(function()
  69. local sM = require(game:GetService('Players').LocalPlayer.Character:FindFirstChildOfClass("Tool").GunStates)
  70.                 sM["Damage"] = math.huge
  71.                 sM["MaxAmmo"] = math.huge
  72.                 sM["StoredAmmo"] = math.huge
  73.                 sM["FireRate"] = -math.huge
  74.                 sM["AmmoPerClip"] = math.huge
  75.                 sM["Range"] = math.huge
  76.                 sM["ReloadTime"] = 0
  77.                 sM["Bullets"] = 50
  78.                 sM["AutoFire"] = true
  79. end)
  80.  
  81. AutoRespawn.Name = "AutoRespawn"
  82. AutoRespawn.Parent = main
  83. AutoRespawn.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  84. AutoRespawn.BorderColor3 = Color3.fromRGB(255, 255, 255)
  85. AutoRespawn.Position = UDim2.new(0.208298236, 0, 0.294999719, 0)
  86. AutoRespawn.Size = UDim2.new(0, 137, 0, 23)
  87. AutoRespawn.Font = Enum.Font.SourceSans
  88. AutoRespawn.Text = "AutoRespawn"
  89. AutoRespawn.TextColor3 = Color3.fromRGB(255, 255, 255)
  90. AutoRespawn.TextScaled = true
  91. AutoRespawn.TextSize = 14.000
  92. AutoRespawn.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  93. AutoRespawn.TextWrapped = true
  94. AutoRespawn.MouseButton1Down:connect(function()
  95. local blah = (game.Players.LocalPlayer.Name)
  96.  
  97. _G.Looop = true
  98.  
  99. while _G.Looop == true do wait(0.1)
  100.       if game:GetService("Workspace")[blah].Humanoid.Health == 0 then
  101.        saved = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  102.         game:GetService("StarterGui"):SetCore("SendNotification", {
  103.         Title = "Position Saved";
  104.         Text = "Success";
  105.         })
  106.         local A_1 = "LocalPlayer"
  107.  
  108. local Event = game:GetService("Workspace").Remote.loadchar
  109. Event:InvokeServer(A_1)
  110.  
  111.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = saved
  112.         game:GetService("StarterGui"):SetCore("SendNotification", {
  113.         Title = "Position Loaded";
  114.         Text = "Success";
  115.         })
  116. end
  117. end
  118. end)
  119.  
  120. KillAll.Name = "KillAll"
  121. KillAll.Parent = main
  122. KillAll.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  123. KillAll.BorderColor3 = Color3.fromRGB(255, 255, 255)
  124. KillAll.Position = UDim2.new(0.208298251, 0, 0.528211713, 0)
  125. KillAll.Size = UDim2.new(0, 137, 0, 23)
  126. KillAll.Font = Enum.Font.SourceSans
  127. KillAll.Text = "KillAll"
  128. KillAll.TextColor3 = Color3.fromRGB(255, 255, 255)
  129. KillAll.TextScaled = true
  130. KillAll.TextSize = 14.000
  131. KillAll.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  132. KillAll.TextWrapped = true
  133. KillAll.MouseButton1Down:connect(function()
  134. workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  135.  
  136. game.Workspace.Remote.ItemHandler:InvokeServer(workspace.Prison_ITEMS.giver["Remington 870"].ITEMPICKUP)
  137.  
  138. wait(0.5)
  139. function kill(a)
  140. local A_1 =
  141. {
  142. [1] =
  143. {
  144. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-391.152252, 8.65560055, -83.2166901)),
  145. ["Distance"] = 3.2524313926697,
  146. ["Cframe"] = CFrame.new(840.310791, 101.334137, 2267.87988, 0.0636406094, 0.151434347, -0.986416459, 0, 0.988420188, 0.151741937, 0.997972965, -0.00965694897, 0.0629036576),
  147. ["Hit"] = a.Character.Head
  148. },
  149.   [2] =
  150. {
  151. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-392.481476, -8.44939327, -76.7261353)),
  152. ["Distance"] = 3.2699294090271,
  153. ["Cframe"] = CFrame.new(840.290466, 101.184189, 2267.93506, 0.0964837447, 0.0589403138, -0.993587971, 4.65661287e-10, 0.998245299, 0.0592165813, 0.995334625, -0.00571343815, 0.0963144377),
  154. ["Hit"] = a.Character.Head
  155. },
  156. [3] =
  157. {
  158. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-389.21701, -2.50536323, -92.2163162)),
  159. ["Distance"] = 3.1665518283844,
  160. ["Cframe"] = CFrame.new(840.338867, 101.236496, 2267.80371, 0.0166504811, 0.0941716284, -0.995416701, 1.16415322e-10, 0.995554805, 0.0941846818, 0.999861419, -0.00156822044, 0.0165764652),
  161. ["Hit"] = a.Character.Head
  162. },
  163. [4] =
  164. {
  165. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-393.353973, 3.13988972, -72.5452042)),
  166. ["Distance"] = 3.3218522071838,
  167. ["Cframe"] = CFrame.new(840.277222, 101.285957, 2267.9707, 0.117109694, 0.118740402, -0.985994935, -1.86264515e-09, 0.992826641, 0.119563118, 0.993119001, -0.0140019981, 0.116269611),
  168. ["Hit"] = a.Character.Head
  169. },
  170. [5] =
  171. {
  172. ["RayObject"] = Ray.new(Vector3.new(845.555908, 101.429337, 2269.43945), Vector3.new(-390.73172, 3.2097764, -85.5477524)),
  173. ["Distance"] = 3.222757101059,
  174. ["Cframe"] = CFrame.new(840.317993, 101.286423, 2267.86035, 0.0517584644, 0.123365127, -0.991010666, 0, 0.992340803, 0.123530701, 0.99865967, -0.00639375951, 0.0513620302),
  175. ["Hit"] = a.Character.Head
  176. }
  177. }
  178. local A_2 = game.Players.LocalPlayer.Backpack["Remington 870"]
  179. local Event = game:GetService("ReplicatedStorage").ShootEvent
  180. Event:FireServer(A_1, A_2)
  181. Event:FireServer(A_1, A_2)
  182. end
  183.  
  184. for i,v in pairs(game.Players:GetChildren())do
  185. if v.Name ~= game.Players.LocalPlayer.Name then
  186. kill(v)
  187. end
  188. end
  189. wait(1)
  190. workspace.Remote.TeamEvent:FireServer("Bright orange")
  191. end)
  192.  
  193. FlyingCar.Name = "FlyingCar"
  194. FlyingCar.Parent = main
  195. FlyingCar.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  196. FlyingCar.BorderColor3 = Color3.fromRGB(255, 255, 255)
  197. FlyingCar.Position = UDim2.new(0.208298177, 0, 0.452790558, 0)
  198. FlyingCar.Size = UDim2.new(0, 137, 0, 23)
  199. FlyingCar.Font = Enum.Font.SourceSans
  200. FlyingCar.Text = "FlyingCar"
  201. FlyingCar.TextColor3 = Color3.fromRGB(255, 255, 255)
  202. FlyingCar.TextScaled = true
  203. FlyingCar.TextSize = 14.000
  204. FlyingCar.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  205. FlyingCar.TextWrapped = true
  206. FlyingCar.MouseButton1Down:connect(function()
  207.        local hint = Instance.new("Hint",game.Players.LocalPlayer.PlayerGui)
  208.    hint.Text = "Press X To Toggle"
  209.    hint.Name = game.JobId
  210. repeat wait()
  211.     until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Torso") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  212. local mouse = game.Players.LocalPlayer:GetMouse()
  213. repeat wait() until mouse
  214. local plr = game.Players.LocalPlayer
  215. local torso = plr.Character.Torso
  216. local flying = true
  217. local deb = true
  218. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  219. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  220. local maxspeed = 500
  221. local speed = 0
  222.  
  223. function Fly()
  224. local bg = Instance.new("BodyGyro", torso)
  225. bg.P = 9e4
  226. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  227. bg.cframe = torso.CFrame
  228. local bv = Instance.new("BodyVelocity", torso)
  229. bv.velocity = Vector3.new(0,0.1,0)
  230. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  231. repeat wait()
  232. plr.Character.Humanoid.PlatformStand = false
  233. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  234. speed = speed+125.0+(speed/maxspeed)
  235. if speed > maxspeed then
  236. speed = maxspeed
  237. end
  238. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  239. speed = speed-250
  240. if speed < 0 then
  241. speed = 0
  242. end
  243. end
  244. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  245. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  246. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  247. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  248. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  249. else
  250. bv.velocity = Vector3.new(0,0.1,0)
  251. end
  252. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  253. until not flying
  254. ctrl = {f = 0, b = 0, l = 0, r = 0}
  255. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  256. speed = 0
  257. bg:Destroy()
  258. bv:Destroy()
  259. plr.Character.Humanoid.PlatformStand = false
  260. end
  261. mouse.KeyDown:connect(function(key)
  262. if key:lower() == "x" then
  263. if flying then flying = false
  264. else
  265. flying = true
  266. Fly()
  267. end
  268. elseif key:lower() == "w" then
  269. ctrl.f = 1
  270. elseif key:lower() == "s" then
  271. ctrl.b = -1
  272. elseif key:lower() == "a" then
  273. ctrl.l = -1
  274. elseif key:lower() == "d" then
  275. ctrl.r = 1
  276. end
  277. end)
  278. mouse.KeyUp:connect(function(key)
  279. if key:lower() == "w" then
  280. ctrl.f = 0
  281. elseif key:lower() == "s" then
  282. ctrl.b = 0
  283. elseif key:lower() == "a" then
  284. ctrl.l = 0
  285. elseif key:lower() == "d" then
  286. ctrl.r = 0
  287. end
  288. wait(5)
  289. hint:Destroy()
  290. end)
  291. Fly()
  292.  
  293. end)
  294.  
  295. SuperPunch.Name = "SuperPunch"
  296. SuperPunch.Parent = main
  297. SuperPunch.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  298. SuperPunch.BorderColor3 = Color3.fromRGB(255, 255, 255)
  299. SuperPunch.Position = UDim2.new(0.208298236, 0, 0.370015562, 0)
  300. SuperPunch.Size = UDim2.new(0, 137, 0, 23)
  301. SuperPunch.Font = Enum.Font.SourceSans
  302. SuperPunch.Text = "SuperPunch"
  303. SuperPunch.TextColor3 = Color3.fromRGB(255, 255, 255)
  304. SuperPunch.TextScaled = true
  305. SuperPunch.TextSize = 14.000
  306. SuperPunch.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  307. SuperPunch.TextWrapped = true
  308. SuperPunch.MouseButton1Down:connect(function()
  309.     mainRemotes = game.ReplicatedStorage
  310. meleeRemote = mainRemotes['meleeEvent']
  311. mouse = game.Players.LocalPlayer:GetMouse()
  312. punching = false
  313. cooldown = false
  314.  
  315. function punch()
  316. cooldown = true
  317. local part = Instance.new("Part", game.Players.LocalPlayer.Character)
  318. part.Transparency = 1
  319. part.Size = Vector3.new(5, 2, 3)
  320. part.CanCollide = false
  321. local w1 = Instance.new("Weld", part)
  322. w1.Part0 = game.Players.LocalPlayer.Character.Torso
  323. w1.Part1 = part
  324. w1.C1 = CFrame.new(0,0,2)
  325. part.Touched:connect(function(hit)
  326. if game.Players:FindFirstChild(hit.Parent.Name) then
  327. local plr = game.Players:FindFirstChild(hit.Parent.Name)
  328. if plr.Name ~= game.Players.LocalPlayer.Name then
  329. part:Destroy()
  330.  
  331. for i = 1,100 do
  332. meleeRemote:FireServer(plr)
  333. end
  334. end
  335. end
  336. end)
  337.  
  338. wait(1)
  339. cooldown = false
  340. part:Destroy()
  341. end
  342.  
  343.  
  344. mouse.KeyDown:connect(function(key)
  345. if cooldown == false then
  346. if key:lower() == "f" then
  347.  
  348. punch()
  349.  
  350. end
  351. end
  352. end)
  353. end)
  354.  
  355. Neutral.Name = "Neutral"
  356. Neutral.Parent = main
  357. Neutral.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  358. Neutral.BorderColor3 = Color3.fromRGB(161, 165, 162)
  359. Neutral.Position = UDim2.new(0.509444952, 0, 0.896252275, 0)
  360. Neutral.Size = UDim2.new(0, 103, 0, 23)
  361. Neutral.Font = Enum.Font.SourceSans
  362. Neutral.Text = "Neutral"
  363. Neutral.TextColor3 = Color3.fromRGB(161, 165, 162)
  364. Neutral.TextScaled = true
  365. Neutral.TextSize = 14.000
  366. Neutral.TextStrokeColor3 = Color3.fromRGB(161, 165, 162)
  367. Neutral.TextWrapped = true
  368. Neutral.MouseButton1Down:connect(function()
  369. Workspace.Remote.TeamEvent:FireServer("Medium stone grey")
  370. end)
  371.  
  372. Criminal.Name = "Criminal"
  373. Criminal.Parent = main
  374. Criminal.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  375. Criminal.BorderColor3 = Color3.fromRGB(151, 0, 0)
  376. Criminal.Position = UDim2.new(0.508146524, 0, 0.767612278, 0)
  377. Criminal.Size = UDim2.new(0, 103, 0, 23)
  378. Criminal.Font = Enum.Font.SourceSans
  379. Criminal.Text = "Criminal"
  380. Criminal.TextColor3 = Color3.fromRGB(151, 0, 0)
  381. Criminal.TextScaled = true
  382. Criminal.TextSize = 14.000
  383. Criminal.TextStrokeColor3 = Color3.fromRGB(151, 0, 0)
  384. Criminal.TextWrapped = true
  385. Criminal.MouseButton1Down:connect(function()
  386.     LCS = game.Workspace["Criminals Spawn"].SpawnLocation
  387.  
  388. LCS.CanCollide = false
  389. LCS.Size = Vector3.new(51.05, 24.12, 54.76)
  390. LCS.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  391. LCS.Transparency = 1
  392. wait(0.5)
  393. LCS.CFrame = CFrame.new(-920.510803, 92.2271957, 2138.27002, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  394. LCS.Size = Vector3.new(6, 0.2, 6)
  395. LCS.Transparency = 0
  396. end)
  397.  
  398.  
  399. Inmate.Name = "Inmate"
  400. Inmate.Parent = main
  401. Inmate.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  402. Inmate.BorderColor3 = Color3.fromRGB(226, 155, 64)
  403. Inmate.Position = UDim2.new(0.0144227352, 0, 0.769233584, 0)
  404. Inmate.Size = UDim2.new(0, 102, 0, 23)
  405. Inmate.Font = Enum.Font.SourceSans
  406. Inmate.Text = "Inmate"
  407. Inmate.TextColor3 = Color3.fromRGB(226, 155, 64)
  408. Inmate.TextScaled = true
  409. Inmate.TextSize = 14.000
  410. Inmate.TextStrokeColor3 = Color3.fromRGB(226, 155, 64)
  411. Inmate.TextWrapped = true
  412. Inmate.MouseButton1Down:connect(function()
  413. Workspace.Remote.TeamEvent:FireServer("Bright orange")
  414. end)
  415.  
  416. Guard.Name = "Guard"
  417. Guard.Parent = main
  418. Guard.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  419. Guard.BackgroundTransparency = 0.100
  420. Guard.BorderColor3 = Color3.fromRGB(16, 42, 220)
  421. Guard.Position = UDim2.new(0.0158361457, 0, 0.89433068, 0)
  422. Guard.Size = UDim2.new(0, 102, 0, 23)
  423. Guard.Font = Enum.Font.SourceSans
  424. Guard.Text = "Guard"
  425. Guard.TextColor3 = Color3.fromRGB(16, 42, 220)
  426. Guard.TextScaled = true
  427. Guard.TextSize = 14.000
  428. Guard.TextStrokeColor3 = Color3.fromRGB(16, 42, 220)
  429. Guard.TextWrapped = true
  430. Guard.MouseButton1Down:connect(function()
  431. Workspace.Remote.TeamEvent:FireServer("Bright blue")
  432. end)
  433.  
  434. line.Name = "line"
  435. line.Parent = main
  436. line.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  437. line.BackgroundTransparency = 0.100
  438. line.BorderColor3 = Color3.fromRGB(52, 52, 52)
  439. line.Position = UDim2.new(0.00407965155, 0, 0.114979215, 0)
  440. line.Size = UDim2.new(0, 235, 0, 4)
  441. line.Font = Enum.Font.SourceSans
  442. line.Text = ""
  443. line.TextColor3 = Color3.fromRGB(0, 0, 0)
  444. line.TextSize = 14.000
  445.  
  446. Title.Name = "Title"
  447. Title.Parent = main
  448. Title.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  449. Title.BackgroundTransparency = 0.100
  450. Title.BorderColor3 = Color3.fromRGB(20, 20, 20)
  451. Title.Position = UDim2.new(0.0160219837, 0, 0.0100373551, 0)
  452. Title.Size = UDim2.new(0, 230, 0, 32)
  453. Title.Font = Enum.Font.SourceSans
  454. Title.Text = "Prison Life V"
  455. Title.TextColor3 = Color3.fromRGB(255, 255, 255)
  456. Title.TextScaled = false
  457. Title.TextSize = 31.000
  458. Title.TextStrokeTransparency = 0.100
  459. Title.TextTransparency = 0.100
  460. Title.TextWrapped = true
  461.  
  462. close.Name = "close"
  463. close.Parent = main
  464. close.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  465. close.BackgroundTransparency = 0.100
  466. close.BorderColor3 = Color3.fromRGB(20, 20, 20)
  467. close.Position = UDim2.new(0.771172822, 0, 0.00252525252, 0)
  468. close.Size = UDim2.new(0, 54, 0, 36)
  469. close.Font = Enum.Font.SourceSans
  470. close.Text = "-"
  471. close.TextColor3 = Color3.fromRGB(255, 255, 255)
  472. close.TextSize = 100.000
  473. close.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  474. close.TextTransparency = 0.100
  475. close.TextWrapped = true
  476. close.MouseButton1Down:connect(function()
  477. main.Visible = false
  478. openmain.Visible = true
  479. end)
  480.  
  481. By.Name = "By"
  482. By.Parent = main
  483. By.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  484. By.BorderColor3 = Color3.fromRGB(20, 20, 20)
  485. By.Position = UDim2.new(0.00404543104, 0, 0.606018066, 0)
  486. By.Size = UDim2.new(0, 235, 0, 55)
  487. By.Font = Enum.Font.SourceSans
  488. By.Text = "Made By Soul#4086"
  489. By.TextColor3 = Color3.fromRGB(255, 255, 255)
  490. By.TextScaled = true
  491. By.TextSize = 14.000
  492. By.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  493. By.TextWrapped = true
  494.  
  495. openmain.Name = "openmain"
  496. openmain.Parent = ScreenGui
  497. openmain.BackgroundColor3 = Color3.fromRGB(52, 52, 52)
  498. openmain.BorderColor3 = Color3.fromRGB(255, 249, 249)
  499. openmain.Position = UDim2.new(0.001, 0, 0.728558958, 0)
  500. openmain.Size = UDim2.new(0, 100, 0, 30)
  501. openmain.Active = true
  502. openmain.Draggable = true
  503.  
  504. Open.Name = "Open"
  505. Open.Parent = openmain
  506. Open.BackgroundColor3 = Color3.fromRGB(20, 20, 20)
  507. Open.BorderColor3 = Color3.fromRGB(255, 255, 255)
  508. Open.Position = UDim2.new(-0.00442231633, 0, -0.00499624014, 0)
  509. Open.Size = UDim2.new(0, 100, 0, 30)
  510. Open.Font = Enum.Font.SourceSans
  511. Open.Text = "Open"
  512. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  513. Open.TextScaled = true
  514. Open.TextSize = 14.000
  515. Open.TextWrapped = true
  516. Open.MouseButton1Down:connect(function()
  517. openmain.Visible = false
  518. main.Visible = true
  519. end)
  520.  
  521. -- Scripts:
  522.  
  523. local function YFFKOR_fake_script() -- line.Script
  524.     local script = Instance.new('Script', line)
  525.  
  526.     function zigzag(X) return math.acos(math.cos(X*math.pi))/math.pi end
  527.    
  528.     counter = 0
  529.    
  530.     while wait(0.1)do
  531.      script.Parent.BackgroundColor3 = Color3.fromHSV(zigzag(counter),1,1)
  532.      
  533.      counter = counter + 0.01
  534.     end
  535. end
  536. coroutine.wrap(YFFKOR_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement