Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local LagMASTER = Instance.new("ScreenGui")
- local LAGFRAME = Instance.new("Frame")
- local LAG_Target = Instance.new("TextBox")
- local LAG_Target_2 = Instance.new("TextBox")
- local CLOSE = Instance.new("TextButton")
- local Sumit = Instance.new("TextButton")
- local TP = Instance.new("TextBox")
- -- Properties
- LagMASTER.Name = "LagMASTER"
- LagMASTER.Parent = game.Players.LocalPlayer.PlayerGui
- LagMASTER.ResetOnSpawn = false
- LAGFRAME.Name = "LAGFRAME"
- LAGFRAME.Parent = LagMASTER
- LAGFRAME.Active = true
- LAGFRAME.BackgroundColor3 = Color3.new(0.333333, 0.333333, 1)
- LAGFRAME.Draggable = true
- LAGFRAME.Size = UDim2.new(0, 200, 0, 200)
- LAG_Target.Name = "LAG_Target"
- LAG_Target.ClearTextOnFocus = false
- LAG_Target.Parent = LAGFRAME
- LAG_Target.BackgroundColor3 = Color3.new(0.666667, 0, 0)
- LAG_Target.Size = UDim2.new(0, 200, 0, 50)
- LAG_Target.Font = Enum.Font.SourceSans
- LAG_Target.FontSize = Enum.FontSize.Size14
- LAG_Target.Text = "Hopper Bin Lag Target"
- LAG_Target.TextSize = 14
- LAG_Target_2.Name = "LAG_Target_2"
- LAG_Target_2.Parent = LAGFRAME
- LAG_Target_2.ClearTextOnFocus = false
- LAG_Target_2.BackgroundColor3 = Color3.new(0.666667, 0, 0)
- LAG_Target_2.Position = UDim2.new(0, 0, 0, 50)
- LAG_Target_2.Size = UDim2.new(0, 200, 0, 50)
- LAG_Target_2.Font = Enum.Font.SourceSans
- LAG_Target_2.FontSize = Enum.FontSize.Size14
- LAG_Target_2.Text = "Head KILLER"
- LAG_Target_2.TextSize = 14
- CLOSE.Name = "CLOSE"
- CLOSE.Parent = LagMASTER
- CLOSE.BackgroundColor3 = Color3.new(0.333333, 0.333333, 0)
- CLOSE.Position = UDim2.new(0, 0, 0, 300)
- CLOSE.Selectable = false
- CLOSE.Size = UDim2.new(0, 50, 0, 50)
- CLOSE.Selected = true
- CLOSE.Font = Enum.Font.SourceSans
- CLOSE.FontSize = Enum.FontSize.Size14
- CLOSE.Text = "CLOSE"
- CLOSE.TextSize = 14
- TP.Name = "TP"
- TP.ClearTextOnFocus = false
- TP.Parent = LAGFRAME
- TP.BackgroundColor3 = Color3.new(0.666667, 0, 0)
- TP.Position = UDim2.new(0, 0, 0, 100)
- TP.Size = UDim2.new(0, 200, 0, 50)
- TP.Font = Enum.Font.SourceSans
- TP.FontSize = Enum.FontSize.Size14
- TP.Text = "TP TO YOU"
- TP.TextSize = 14
- Sumit.Name = "Sumit"
- Sumit.Parent = LagMASTER
- Sumit.Position = UDim2.new(0,0,0,350)
- Sumit.Text = "Sumit"
- Sumit.Size = UDim2.new(0,50,0,50)
- --MAIN SCRIPT-----
- --OPEN AND CLOSE--
- CLOSE.MouseButton1Down:connect(function()
- if LAGFRAME.Visible == false then
- LAGFRAME.Visible = true
- CLOSE.Text = "Close"
- elseif LAGFRAME.Visible == true then
- LAGFRAME.Visible = false
- CLOSE.Text = "Open"
- ------------------------------------
- end
- end)
- -----------------
- --LAG Target 1 --
- -----------------
- Sumit.MouseButton1Down:connect(function()
- while true do
- wait()
- if game.Players:FindFirstChild(LAG_Target.Text) then
- Instance.new("HopperBin",game.Players[LAG_Target.Text].Backpack).Name = "Bye Dear Friend"
- wait(10)
- for i = -math.huge,math.huge do
- Instance.new("StringValue",game:GetService[[Players]][LAG_Target.Text]).Value = string.rep("CRASH",999999999)
- end
- ----------------
- --LAG_Target_2--
- ----------------
- elseif game.Workspace:FindFirstChild(LAG_Target_2.Text) then
- game.Workspace[LAG_Target_2.Text].Head:Destroy()
- end
- if game.Workspace:FindFirstChild(TP.Text) then
- local plr = game.Players.LocalPlayer.Name
- local pt = game.Workspace[plr].Torso.CFrame
- game.Workspace[TP.Text].Torso.CFrame = CFrame.new(pt,pt,pt)
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment