ilovescripting

Lyfe V1.0 | Prison Life

Oct 16th, 2022
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.20 KB | Gaming | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Core = Instance.new("Frame")
  3. local Label = Instance.new("TextLabel")
  4. local Walkspeed = Instance.new("TextButton")
  5. local ALLWEAPONS = Instance.new("TextButton")
  6. local INFINITEYEILD = Instance.new("TextButton")
  7. local TextButton = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. Core.Name = "Core"
  14. Core.Parent = ScreenGui
  15. Core.BackgroundColor3 = Color3.fromRGB(56, 56, 56)
  16. Core.Position = UDim2.new(0.373806298, 0, 0.346232176, 0)
  17. Core.Size = UDim2.new(0, 512, 0, 345)
  18. Core.Active = true
  19. Core.Draggable = true
  20.  
  21. Label.Name = "Label"
  22. Label.Parent = Core
  23. Label.BackgroundColor3 = Color3.fromRGB(83, 83, 83)
  24. Label.Size = UDim2.new(0, 512, 0, 33)
  25. Label.Font = Enum.Font.SourceSans
  26. Label.Text = "Lyfe V.1.0"
  27. Label.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. Label.TextScaled = true
  29. Label.TextSize = 16.000
  30. Label.TextWrapped = true
  31. Label.TextYAlignment = Enum.TextYAlignment.Bottom
  32.  
  33. Walkspeed.Name = "Walkspeed"
  34. Walkspeed.Parent = Core
  35. Walkspeed.BackgroundColor3 = Color3.fromRGB(112, 112, 112)
  36. Walkspeed.Position = UDim2.new(0.0302114487, 0, 0.13333334, 0)
  37. Walkspeed.Size = UDim2.new(0, 212, 0, 38)
  38. Walkspeed.Font = Enum.Font.SourceSans
  39. Walkspeed.Text = "WALKSPEED"
  40. Walkspeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  41. Walkspeed.TextSize = 25.000
  42. Walkspeed.MouseButton1Down:connect(function()
  43.     game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 125
  44. end)
  45.  
  46. ALLWEAPONS.Name = "ALL WEAPONS"
  47. ALLWEAPONS.Parent = Core
  48. ALLWEAPONS.BackgroundColor3 = Color3.fromRGB(112, 112, 112)
  49. ALLWEAPONS.Position = UDim2.new(0.531374812, 0, 0.13333334, 0)
  50. ALLWEAPONS.Size = UDim2.new(0, 224, 0, 38)
  51. ALLWEAPONS.Font = Enum.Font.SourceSans
  52. ALLWEAPONS.Text = "ALL WEAPONS"
  53. ALLWEAPONS.TextColor3 = Color3.fromRGB(0, 0, 0)
  54. ALLWEAPONS.TextSize = 25.000
  55. ALLWEAPONS.MouseButton1Down:connect(function()
  56.     for i,v in pairs(game:GetService("Workspace")["Prison_ITEMS"].giver:GetChildren()) do
  57.         if v and v.ITEMPICKUP then
  58.             local A_1 = v.ITEMPICKUP
  59.             local Event = game:GetService("Workspace").Remote.ItemHandler
  60.             Event:InvokeServer(A_1)
  61.         end
  62.     end
  63. end)
  64.  
  65.  
  66. INFINITEYEILD.Name = "INFINITE YEILD"
  67. INFINITEYEILD.Parent = Core
  68. INFINITEYEILD.BackgroundColor3 = Color3.fromRGB(112, 112, 112)
  69. INFINITEYEILD.Position = UDim2.new(0.0302114487, 0, 0.301449269, 0)
  70. INFINITEYEILD.Size = UDim2.new(0, 480, 0, 67)
  71. INFINITEYEILD.Font = Enum.Font.SourceSans
  72. INFINITEYEILD.Text = "INFINTE YEILD"
  73. INFINITEYEILD.TextColor3 = Color3.fromRGB(0, 0, 0)
  74. INFINITEYEILD.TextSize = 53.000
  75. INFINITEYEILD.MouseButton1Down:connect(function()
  76.     loadstring(game:HttpGet(('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'),true))()
  77. end)
  78.  
  79.  
  80. TextButton.Parent = Core
  81. TextButton.BackgroundColor3 = Color3.fromRGB(112, 112, 112)
  82. TextButton.Position = UDim2.new(0.0302114487, 0, 0.571014464, 0)
  83. TextButton.Size = UDim2.new(0, 481, 0, 124)
  84. TextButton.Font = Enum.Font.SourceSans
  85. TextButton.Text = "OVERPOWERED ADMIN V3.4 | SAY ;CMDS"
  86. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  87. TextButton.TextSize = 34.000
  88. TextButton.MouseButton1Down:connect(function()
  89.     loadstring(game:HttpGet(('https://raw.githubusercontent.com/XTheMasterX/Scripts/Main/PrisonLife'),true))()
  90. end)
  91.  
Tags: Roblox
Add Comment
Please, Sign In to add comment