Advertisement
LOLROW

LOLSPLOIT 5.0

Aug 18th, 2019
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.10 KB | None | 0 0
  1. local function opengui()
  2.     local player = game.Players.LocalPlayer
  3.     local mouse = player:GetMouse()
  4.    
  5.     mouse.KeyDown:connect(function(key)
  6.         if key == "=" then
  7.             local function walkspeed()
  8.                 local player = game.Players.LocalPlayer
  9.                 local mouse = player:GetMouse()
  10.                
  11.                 mouse.KeyDown:connect(function(key)
  12.                     if key == "t" then
  13.                         local x = game.Players.LocalPlayer.Character.Humanoid
  14.                        
  15.                         x.WalkSpeed = 200
  16.                     elseif key == "y" then
  17.                         local x = game.Players.LocalPlayer.Character.Humanoid
  18.                        
  19.                         x.WalkSpeed = 16
  20.                     end
  21.                 end)
  22.             end
  23.             local function highjump()
  24.                 local player = game.Players.LocalPlayer
  25.                 local mouse = player:GetMouse()
  26.                
  27.                 mouse.KeyDown:connect(function(key)
  28.                     if key == "g" then
  29.                         local x = game.Players.LocalPlayer.Character.Humanoid
  30.                        
  31.                         x.JumpPower = 150
  32.                     elseif key == "h" then
  33.                         local x = game.Players.LocalPlayer.Character.Humanoid
  34.                        
  35.                         x.JumpPower = 50
  36.                     end
  37.                 end)
  38.             end
  39.             local function gravity()
  40.                 local player = game.Players.LocalPlayer
  41.                 local mouse = player:GetMouse()
  42.                
  43.                 mouse.KeyDown:connect(function(key)
  44.                     if key == "k" then
  45.                         local x = game.Workspace
  46.                        
  47.                         x.Gravity = 0
  48.                     elseif key == "l" then
  49.                         local x = game.Workspace
  50.                        
  51.                         x.Gravity = 196.2
  52.                     end
  53.                 end)
  54.             end
  55.             local function rocitizensmoney()
  56.                 local player = game.Players.LocalPlayer
  57.                 local mouse = player:GetMouse()
  58.                
  59.                 mouse.KeyDown:connect(function(key)
  60.                     if key == "b" then
  61.                         game.Players.LocalPlayer.ChangeMoney:Fire(2000000000)
  62.                     end
  63.                 end)
  64.             end
  65.             local function killall()
  66.                 local player = game.Players.LocalPlayer
  67.                 local mouse = player:GetMouse()
  68.                
  69.                 mouse.KeyDown:connect(function(key)
  70.                     if key == "x" then
  71.                         local p = game.Players:GetChildren()
  72.            
  73.                         for i = 1,#p do
  74.                             p[i].Character.Head:remove()
  75.                         end
  76.                     end
  77.                 end)
  78.             end
  79.             walkspeed()
  80.             highjump()
  81.             gravity()
  82.             killall()
  83.            
  84.            
  85.             local Guiupdate = Instance.new("ScreenGui")
  86.             local MainFrame = Instance.new("Frame")
  87.             local TextLabel = Instance.new("TextLabel")
  88.             local Frame = Instance.new("Frame")
  89.             local exit = Instance.new("TextButton")
  90.             local miscbutton = Instance.new("TextButton")
  91.             local gamesbutton = Instance.new("TextButton")
  92.             local ImageLabel = Instance.new("ImageLabel")
  93.             local GamesFrame = Instance.new("Frame")
  94.             local TextLabel_2 = Instance.new("TextLabel")
  95.             local Frame_2 = Instance.new("Frame")
  96.             local plcrimbase = Instance.new("TextButton")
  97.             local ndaautowin = Instance.new("TextButton")
  98.             local plarmory = Instance.new("TextButton")
  99.             local dwsz = Instance.new("TextButton")
  100.             local TextLabel_3 = Instance.new("TextLabel")
  101.             local TextLabel_4 = Instance.new("TextLabel")
  102.             local ExploitsFrame = Instance.new("Frame")
  103.             local TextLabel_5 = Instance.new("TextLabel")
  104.             local Frame_3 = Instance.new("Frame")
  105.             local TextLabel_6 = Instance.new("TextLabel")
  106.             local TextLabel_7 = Instance.new("TextLabel")
  107.             local TextLabel_8 = Instance.new("TextLabel")
  108.             local TextLabel_9 = Instance.new("TextLabel")
  109.             --Properties:
  110.             Guiupdate.Name = "Guiupdate"
  111.             Guiupdate.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  112.             Guiupdate.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  113.            
  114.             MainFrame.Name = "MainFrame"
  115.             MainFrame.Parent = Guiupdate
  116.             MainFrame.Active = true
  117.             MainFrame.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  118.             MainFrame.BackgroundTransparency = 0.30000001192093
  119.             MainFrame.BorderSizePixel = 0
  120.             MainFrame.Position = UDim2.new(0.153046057, 0, 0.275256217, 0)
  121.             MainFrame.Size = UDim2.new(0, 239, 0, 306)
  122.            
  123.             TextLabel.Parent = MainFrame
  124.             TextLabel.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  125.             TextLabel.BorderSizePixel = 0
  126.             TextLabel.Size = UDim2.new(0, 239, 0, 30)
  127.             TextLabel.Font = Enum.Font.Highway
  128.             TextLabel.Text = "LOLSPLOIT"
  129.             TextLabel.TextColor3 = Color3.new(1, 0, 0)
  130.             TextLabel.TextSize = 20
  131.            
  132.             Frame.Parent = TextLabel
  133.             Frame.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  134.             Frame.BorderSizePixel = 0
  135.             Frame.Position = UDim2.new(0, 0, 1, 0)
  136.             Frame.Size = UDim2.new(0, 239, 0, 6)
  137.            
  138.             exit.Name = "exit"
  139.             exit.Parent = TextLabel
  140.             exit.Active = false
  141.             exit.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  142.             exit.BorderSizePixel = 0
  143.             exit.Position = UDim2.new(0.916317999, 0, 0, 0)
  144.             exit.Size = UDim2.new(0, 20, 0, 19)
  145.             exit.Font = Enum.Font.SourceSans
  146.             exit.Text = "X"
  147.             exit.TextColor3 = Color3.new(1, 0, 0)
  148.             exit.TextSize = 14
  149.             exit.TextStrokeColor3 = Color3.new(1, 0, 0)
  150.            
  151.             exit.MouseButton1Down:connect(function()
  152.                 MainFrame.Visible = false
  153.             end)
  154.            
  155.             miscbutton.Name = "miscbutton"
  156.             miscbutton.Parent = MainFrame
  157.             miscbutton.Active = false
  158.             miscbutton.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  159.             miscbutton.BackgroundTransparency = 0.30000001192093
  160.             miscbutton.BorderSizePixel = 0
  161.             miscbutton.Position = UDim2.new(0.079497911, 0, 0.186274514, 0)
  162.             miscbutton.Size = UDim2.new(0, 200, 0, 50)
  163.             miscbutton.Font = Enum.Font.Highway
  164.             miscbutton.Text = "Exploits"
  165.             miscbutton.TextColor3 = Color3.new(1, 0, 0)
  166.             miscbutton.TextSize = 14
  167.            
  168.             miscbutton.MouseButton1Down:connect(function()
  169.                 ExploitsFrame.Visible = true
  170.             end)
  171.            
  172.             gamesbutton.Name = "gamesbutton"
  173.             gamesbutton.Parent = MainFrame
  174.             gamesbutton.Active = false
  175.             gamesbutton.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  176.             gamesbutton.BackgroundTransparency = 0.30000001192093
  177.             gamesbutton.BorderSizePixel = 0
  178.             gamesbutton.Position = UDim2.new(0.079497911, 0, 0.751634002, 0)
  179.             gamesbutton.Size = UDim2.new(0, 200, 0, 50)
  180.             gamesbutton.Font = Enum.Font.Highway
  181.             gamesbutton.Text = "Games"
  182.             gamesbutton.TextColor3 = Color3.new(1, 0, 0)
  183.             gamesbutton.TextSize = 14
  184.            
  185.             gamesbutton.MouseButton1Down:connect(function()
  186.                 GamesFrame.Visible = true
  187.                 rocitizensmoney()
  188.             end)
  189.            
  190.             ImageLabel.Parent = MainFrame
  191.             ImageLabel.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  192.             ImageLabel.BackgroundTransparency = 1
  193.             ImageLabel.BorderSizePixel = 0
  194.             ImageLabel.Position = UDim2.new(0.288702935, 0, 0.382352948, 0)
  195.             ImageLabel.Size = UDim2.new(0, 100, 0, 100)
  196.             ImageLabel.Image = "rbxassetid://3024949329"
  197.            
  198.             GamesFrame.Name = "GamesFrame"
  199.             GamesFrame.Parent = Guiupdate
  200.             GamesFrame.Active = true
  201.             GamesFrame.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  202.             GamesFrame.BackgroundTransparency = 0.30000001192093
  203.             GamesFrame.BorderSizePixel = 0
  204.             GamesFrame.Position = UDim2.new(0.436849892, 0, 0.317715973, 0)
  205.             GamesFrame.Size = UDim2.new(0, 188, 0, 337)
  206.             GamesFrame.Visible = false
  207.            
  208.             TextLabel_2.Parent = GamesFrame
  209.             TextLabel_2.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  210.             TextLabel_2.BorderSizePixel = 0
  211.             TextLabel_2.Size = UDim2.new(0, 188, 0, 27)
  212.             TextLabel_2.Font = Enum.Font.Highway
  213.             TextLabel_2.Text = "Games"
  214.             TextLabel_2.TextColor3 = Color3.new(1, 0, 0)
  215.             TextLabel_2.TextSize = 20
  216.            
  217.             Frame_2.Parent = GamesFrame
  218.             Frame_2.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  219.             Frame_2.BorderSizePixel = 0
  220.             Frame_2.Position = UDim2.new(0, 0, 0.080377683, 0)
  221.             Frame_2.Size = UDim2.new(0, 188, 0, 10)
  222.            
  223.             plcrimbase.Name = "plcrimbase"
  224.             plcrimbase.Parent = GamesFrame
  225.             plcrimbase.Active = false
  226.             plcrimbase.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  227.             plcrimbase.BackgroundTransparency = 0.30000001192093
  228.             plcrimbase.BorderSizePixel = 0
  229.             plcrimbase.Position = UDim2.new(0, 0, 0.259174526, 0)
  230.             plcrimbase.Size = UDim2.new(0, 188, 0, 50)
  231.             plcrimbase.Font = Enum.Font.Highway
  232.             plcrimbase.Text = "Prison Life | Crimbase"
  233.             plcrimbase.TextColor3 = Color3.new(1, 0, 0)
  234.             plcrimbase.TextSize = 14
  235.            
  236.             plcrimbase.MouseButton1Down:connect(function()
  237.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-951.052429, 94.928627, 2070.35352))
  238.             end)
  239.            
  240.             ndaautowin.Name = "ndaautowin"
  241.             ndaautowin.Parent = GamesFrame
  242.             ndaautowin.Active = false
  243.             ndaautowin.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  244.             ndaautowin.BackgroundTransparency = 0.30000001192093
  245.             ndaautowin.BorderSizePixel = 0
  246.             ndaautowin.Position = UDim2.new(0, 0, 0.407542527, 0)
  247.             ndaautowin.Size = UDim2.new(0, 188, 0, 50)
  248.             ndaautowin.Font = Enum.Font.Highway
  249.             ndaautowin.Text = "Natural Disaster | Autowin"
  250.             ndaautowin.TextColor3 = Color3.new(1, 0, 0)
  251.             ndaautowin.TextSize = 14
  252.            
  253.             ndaautowin.MouseButton1Down:connect(function()
  254.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(-317.481415, 179.293121, 358.486542))
  255.             end)
  256.            
  257.             plarmory.Name = "plarmory"
  258.             plarmory.Parent = GamesFrame
  259.             plarmory.Active = false
  260.             plarmory.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  261.             plarmory.BackgroundTransparency = 0.30000001192093
  262.             plarmory.BorderSizePixel = 0
  263.             plarmory.Position = UDim2.new(0, 0, 0.110806569, 0)
  264.             plarmory.Size = UDim2.new(0, 188, 0, 50)
  265.             plarmory.Font = Enum.Font.Highway
  266.             plarmory.Text = "Prison Life | Armory"
  267.             plarmory.TextColor3 = Color3.new(1, 0, 0)
  268.             plarmory.TextSize = 14
  269.            
  270.             plarmory.MouseButton1Down:connect(function()
  271.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new(838.334106, 99.7822037, 2267.90942))
  272.             end)
  273.            
  274.             dwsz.Name = "dwsz"
  275.             dwsz.Parent = GamesFrame
  276.             dwsz.Active = false
  277.             dwsz.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  278.             dwsz.BackgroundTransparency = 0.30000001192093
  279.             dwsz.BorderSizePixel = 0
  280.             dwsz.Position = UDim2.new(0, 0, 0.555910408, 0)
  281.             dwsz.Size = UDim2.new(0, 188, 0, 50)
  282.             dwsz.Font = Enum.Font.Highway
  283.             dwsz.Text = "Dead Winter | SafeZone"
  284.             dwsz.TextColor3 = Color3.new(1, 0, 0)
  285.             dwsz.TextSize = 14
  286.            
  287.             dwsz.MouseButton1Down:connect(function()
  288.                 game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(Vector3.new())
  289.             end)
  290.            
  291.             TextLabel_3.Parent = GamesFrame
  292.             TextLabel_3.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  293.             TextLabel_3.BackgroundTransparency = 0.30000001192093
  294.             TextLabel_3.BorderSizePixel = 0
  295.             TextLabel_3.Position = UDim2.new(0, 0, 0.703264117, 0)
  296.             TextLabel_3.Size = UDim2.new(0, 188, 0, 50)
  297.             TextLabel_3.Font = Enum.Font.Highway
  298.             TextLabel_3.Text = "Rocitizens Money | B"
  299.             TextLabel_3.TextColor3 = Color3.new(1, 0, 0)
  300.             TextLabel_3.TextSize = 14
  301.            
  302.             TextLabel_4.Parent = GamesFrame
  303.             TextLabel_4.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  304.             TextLabel_4.BackgroundTransparency = 0.30000001192093
  305.             TextLabel_4.BorderSizePixel = 0
  306.             TextLabel_4.Position = UDim2.new(0, 0, 0.851632059, 0)
  307.             TextLabel_4.Size = UDim2.new(0, 188, 0, 50)
  308.             TextLabel_4.Font = Enum.Font.Highway
  309.             TextLabel_4.Text = ""
  310.             TextLabel_4.TextColor3 = Color3.new(1, 0, 0)
  311.             TextLabel_4.TextSize = 14
  312.            
  313.             ExploitsFrame.Name = "ExploitsFrame"
  314.             ExploitsFrame.Parent = Guiupdate
  315.             ExploitsFrame.Active = true
  316.             ExploitsFrame.BackgroundColor3 = Color3.new(0.227451, 0.227451, 0.227451)
  317.             ExploitsFrame.BackgroundTransparency = 0.30000001192093
  318.             ExploitsFrame.BorderSizePixel = 0
  319.             ExploitsFrame.Position = UDim2.new(0.82986629, 0, 0.317715973, 0)
  320.             ExploitsFrame.Size = UDim2.new(0, 192, 0, 237)
  321.             ExploitsFrame.Visible = false
  322.            
  323.             TextLabel_5.Parent = ExploitsFrame
  324.             TextLabel_5.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  325.             TextLabel_5.BorderSizePixel = 0
  326.             TextLabel_5.Size = UDim2.new(0, 192, 0, 28)
  327.             TextLabel_5.Font = Enum.Font.Highway
  328.             TextLabel_5.Text = "Exploits"
  329.             TextLabel_5.TextColor3 = Color3.new(1, 0, 0)
  330.             TextLabel_5.TextSize = 20
  331.            
  332.             Frame_3.Parent = TextLabel_5
  333.             Frame_3.BackgroundColor3 = Color3.new(0.247059, 0.247059, 0.247059)
  334.             Frame_3.BorderSizePixel = 0
  335.             Frame_3.Position = UDim2.new(0, 0, 1, 0)
  336.             Frame_3.Size = UDim2.new(0, 192, 0, 10)
  337.            
  338.             TextLabel_6.Parent = ExploitsFrame
  339.             TextLabel_6.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  340.             TextLabel_6.BackgroundTransparency = 0.30000001192093
  341.             TextLabel_6.BorderSizePixel = 0
  342.             TextLabel_6.Position = UDim2.new(0, 0, 0.160337552, 0)
  343.             TextLabel_6.Size = UDim2.new(0, 192, 0, 49)
  344.             TextLabel_6.Font = Enum.Font.Highway
  345.             TextLabel_6.Text = "Speed | T / Y"
  346.             TextLabel_6.TextColor3 = Color3.new(1, 0, 0)
  347.             TextLabel_6.TextSize = 14
  348.            
  349.             TextLabel_7.Parent = ExploitsFrame
  350.             TextLabel_7.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  351.             TextLabel_7.BackgroundTransparency = 0.30000001192093
  352.             TextLabel_7.BorderSizePixel = 0
  353.             TextLabel_7.Position = UDim2.new(0, 0, 0.367088616, 0)
  354.             TextLabel_7.Size = UDim2.new(0, 192, 0, 49)
  355.             TextLabel_7.Font = Enum.Font.Highway
  356.             TextLabel_7.Text = "Highjump | G / H"
  357.             TextLabel_7.TextColor3 = Color3.new(1, 0, 0)
  358.             TextLabel_7.TextSize = 14
  359.            
  360.             TextLabel_8.Parent = ExploitsFrame
  361.             TextLabel_8.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  362.             TextLabel_8.BackgroundTransparency = 0.30000001192093
  363.             TextLabel_8.BorderSizePixel = 0
  364.             TextLabel_8.Position = UDim2.new(0, 0, 0.573839664, 0)
  365.             TextLabel_8.Size = UDim2.new(0, 192, 0, 49)
  366.             TextLabel_8.Font = Enum.Font.Highway
  367.             TextLabel_8.Text = "Gravity | K / L"
  368.             TextLabel_8.TextColor3 = Color3.new(1, 0, 0)
  369.             TextLabel_8.TextSize = 14
  370.            
  371.             TextLabel_9.Parent = ExploitsFrame
  372.             TextLabel_9.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  373.             TextLabel_9.BackgroundTransparency = 0.30000001192093
  374.             TextLabel_9.BorderSizePixel = 0
  375.             TextLabel_9.Position = UDim2.new(0, 0, 0.780590713, 0)
  376.             TextLabel_9.Size = UDim2.new(0, 192, 0, 49)
  377.             TextLabel_9.Font = Enum.Font.Highway
  378.             TextLabel_9.Text = "Killall | X"
  379.             TextLabel_9.TextColor3 = Color3.new(1, 0, 0)
  380.             TextLabel_9.TextSize = 14
  381.             -- Scripts:
  382.             function SCRIPT_PFUQ89_FAKESCRIPT() -- Guiupdate.LocalScript
  383.                 local script = Instance.new('LocalScript')
  384.                 script.Parent = Guiupdate
  385.                 for _,v in ipairs(script.Parent:GetDescendants()) do
  386.                 if not v:IsA("LocalScript") then
  387.                 v.Draggable = true
  388.                 end
  389.                 end
  390.            
  391.             end
  392.             coroutine.resume(coroutine.create(SCRIPT_PFUQ89_FAKESCRIPT))
  393.         end
  394.     end)
  395. end
  396. opengui();
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement