Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- // This is V1 of the gui, V2 will have speed-hack and more mk
- local Gui = Instance.new("ScreenGui")
- local F1 = Instance.new("Frame")
- local OpenButton = Instance.new("TextButton")
- local CloseButton = Instance.new("TextButton")
- local F2 = Instance.new("Frame")
- local F2F1 = Instance.new("Frame")
- local TL1 = Instance.new("TextLabel")
- local B1 = Instance.new("TextButton")
- local B2 = Instance.new("TextButton")
- local CraftText1 = Instance.new("TextBox")
- local B3 = Instance.new("TextButton")
- local TL2 = Instance.new("TextLabel")
- local F2F1_2 = Instance.new("Frame")
- local NextButton = Instance.new("TextButton")
- local PreviousButton = Instance.new("TextButton")
- Gui.Name = "Gui"
- Gui.Parent = game.CoreGui
- Gui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- F1.Name = "F1"
- F1.Parent = Gui
- F1.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- F1.BorderSizePixel = 0
- F1.Position = UDim2.new(0.702680111, 0, 0.962292552, 0)
- F1.Size = UDim2.new(0, 107, 0, 25)
- OpenButton.Name = "OpenButton"
- OpenButton.Parent = F1
- OpenButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- OpenButton.BackgroundTransparency = 0.25
- OpenButton.BorderSizePixel = 0
- OpenButton.Size = UDim2.new(0, 107, 0, 25)
- OpenButton.Font = Enum.Font.Fantasy
- OpenButton.Text = "Open Gui"
- OpenButton.TextColor3 = Color3.new(1, 1, 1)
- OpenButton.TextSize = 17
- OpenButton.MouseButton1Click:connect(function()
- OpenButton.Visible = false
- CloseButton.Visible = true
- F2.Visible = true
- game.Lighting.FogEnd = 1200000
- game.Lighting.Brightness = 3
- game.Lighting.GlobalShadows = false
- end)
- CloseButton.Name = "CloseButton"
- CloseButton.Parent = F1
- CloseButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- CloseButton.BackgroundTransparency = 0.25
- CloseButton.BorderSizePixel = 0
- CloseButton.Size = UDim2.new(0, 107, 0, 25)
- CloseButton.Visible = false
- CloseButton.Font = Enum.Font.Fantasy
- CloseButton.Text = "Close Gui"
- CloseButton.TextColor3 = Color3.new(1, 1, 1)
- CloseButton.TextSize = 17
- CloseButton.MouseButton1Click:connect(function()
- OpenButton.Visible = true
- CloseButton.Visible = false
- F2.Visible = false
- game.Lighting.FogEnd = 1200000
- game.Lighting.Brightness = 3
- game.Lighting.GlobalShadows = false
- end)
- F2.Name = "F2"
- F2.Parent = Gui
- F2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- F2.BorderSizePixel = 0
- F2.Position = UDim2.new(0.399497479, 0, 0.345399708, 0)
- F2.Size = UDim2.new(0, 253, 0, 216)
- F2.Visible = false
- F2F1.Name = "F2F1"
- F2F1.Parent = F2
- F2F1.BackgroundColor3 = Color3.new(0.196078, 0.196078, 0.196078)
- F2F1.BorderSizePixel = 0
- F2F1.Position = UDim2.new(0.0237154141, 0, 0.027777778, 0)
- F2F1.Size = UDim2.new(0, 241, 0, 204)
- TL1.Name = "TL1"
- TL1.Parent = F2F1
- TL1.BackgroundColor3 = Color3.new(1, 1, 1)
- TL1.BackgroundTransparency = 1
- TL1.BorderSizePixel = 0
- TL1.Position = UDim2.new(0.0248962659, 0, 0.862745106, 0)
- TL1.Size = UDim2.new(0, 191, 0, 22)
- TL1.Font = Enum.Font.Fantasy
- TL1.Text = "MadeBy: UnknownExploiter"
- TL1.TextColor3 = Color3.new(0, 0, 0)
- TL1.TextSize = 15
- TL1.TextWrapped = true
- B1.Name = "B1"
- B1.Parent = F2F1
- B1.BackgroundColor3 = Color3.new(1, 1, 1)
- B1.BackgroundTransparency = 0.69999998807907
- B1.BorderSizePixel = 0
- B1.Position = UDim2.new(0.0248962659, 0, 0.0294117648, 0)
- B1.Size = UDim2.new(0, 229, 0, 21)
- B1.Font = Enum.Font.Fantasy
- B1.Text = "Infinite Jump"
- B1.TextColor3 = Color3.new(0, 0, 0)
- B1.TextSize = 16
- B1.TextWrapped = true
- B1.MouseButton1Click:connect(function()
- local Player = game:GetService'Players'.LocalPlayer;
- local UIS = game:GetService'UserInputService';
- _G.JumpHeight = 50;
- function Action(Object, Function) if Object ~= nil then Function(Object); end end
- UIS.InputBegan:connect(function(UserInput)
- if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
- Action(Player.Character.Humanoid, function(self)
- if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
- Action(self.Parent.HumanoidRootPart, function(self)
- self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
- end)
- end
- end)
- end
- end)
- B2.Name = "B2"
- B2.Parent = F2F1
- B2.BackgroundColor3 = Color3.new(1, 1, 1)
- B2.BackgroundTransparency = 0.69999998807907
- B2.BorderSizePixel = 0
- B2.Position = UDim2.new(0.0248962659, 0, 0.161764711, 0)
- B2.Size = UDim2.new(0, 229, 0, 21)
- B2.Font = Enum.Font.Fantasy
- B2.Text = "ESP"
- B2.TextColor3 = Color3.new(0, 0, 0)
- B2.TextSize = 16
- B2.TextWrapped = true
- Important = {Players = game:GetService("Players"), Workspace = game:GetService("Workspace"), CoreGui = game:GetService("CoreGui")}
- local enabledesp = false
- function CreateESP(plr)
- if plr ~= nil then
- local GetChar = plr.Character
- if not GetChar then return end
- local GetHead do
- repeat wait() until GetChar:FindFirstChild("Head")
- end
- GetHead = GetChar.Head
- local bb = Instance.new("BillboardGui", Important.CoreGui)
- bb.Adornee = GetHead
- bb.ExtentsOffset = Vector3.new(0, 1, 0)
- bb.AlwaysOnTop = true
- bb.Size = UDim2.new(0, 5, 0, 5)
- bb.StudsOffset = Vector3.new(0, 3, 0)
- bb.Name = "ESP_PLAYER_" .. plr.Name
- local displayframe = Instance.new("Frame", bb)
- displayframe.ZIndex = 10
- displayframe.BackgroundTransparency = 1
- displayframe.Size = UDim2.new(1,0,1,0)
- local name = Instance.new("TextLabel", displayframe)
- name.Name = "Name"
- name.ZIndex = 10
- name.Text = plr.Name
- name.Visible = true
- name.TextColor3 = Color3.new(170,0,0)
- name.BackgroundTransparency = 1
- name.Size = UDim2.new(1,0,10,0)
- name.Font = Enum.Font.SourceSansLight
- name.TextSize = 20
- name.TextStrokeTransparency = .5
- end
- end
- B2.MouseButton1Click:connect(function()
- for i,v in pairs(Important.Players:GetChildren()) do
- CreateESP(v)
- end
- end)
- CraftText1.Name = "CraftText1"
- CraftText1.Parent = F2F1
- CraftText1.BackgroundColor3 = Color3.new(1, 1, 1)
- CraftText1.BackgroundTransparency = 0.69999998807907
- CraftText1.BorderSizePixel = 0
- CraftText1.Position = UDim2.new(0.0248962659, 0, 0.30392158, 0)
- CraftText1.Size = UDim2.new(0, 140, 0, 21)
- CraftText1.Font = Enum.Font.Fantasy
- CraftText1.Text = "[ Item Name Here ]"
- CraftText1.TextColor3 = Color3.new(0, 0, 0)
- CraftText1.TextSize = 14
- B3.Name = "B3"
- B3.Parent = F2F1
- B3.BackgroundColor3 = Color3.new(1, 1, 1)
- B3.BackgroundTransparency = 0.69999998807907
- B3.BorderSizePixel = 0
- B3.Position = UDim2.new(0.630705416, 0, 0.30392158, 0)
- B3.Size = UDim2.new(0, 83, 0, 21)
- B3.Font = Enum.Font.Fantasy
- B3.Text = "Craft"
- B3.TextColor3 = Color3.new(0, 0, 0)
- B3.TextSize = 16
- B3.TextWrapped = true
- B3.MouseButton1Click:connect(function()
- local ItemName = CraftText1.Text
- game:GetService("ReplicatedStorage").Events.CraftItem:FireServer(ItemName)
- end)
- TL2.Name = "TL2"
- TL2.Parent = F2F1
- TL2.BackgroundColor3 = Color3.new(1, 1, 1)
- TL2.BackgroundTransparency = 1
- TL2.BorderSizePixel = 0
- TL2.Position = UDim2.new(0.103734441, 0, 0.406862736, 0)
- TL2.Size = UDim2.new(0, 191, 0, 66)
- TL2.Font = Enum.Font.Fantasy
- TL2.Text = "In order to use Anti-Level-Craft you must have the items to craft the item / and you must spell the item correctly"
- TL2.TextColor3 = Color3.new(0, 0, 0)
- TL2.TextSize = 15
- TL2.TextWrapped = true
- F2F1_2.Name = "F2F1"
- F2F1_2.Parent = F2
- F2F1_2.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
- F2F1_2.BorderSizePixel = 0
- F2F1_2.Position = UDim2.new(0.826086938, 0, 0.814814806, 0)
- F2F1_2.Size = UDim2.new(0, 44, 0, 40)
- NextButton.Name = "NextButton"
- NextButton.Parent = F2F1_2
- NextButton.BackgroundColor3 = Color3.new(1, 1, 1)
- NextButton.BackgroundTransparency = 1
- NextButton.Size = UDim2.new(0, 38, 0, 34)
- NextButton.Font = Enum.Font.Fantasy
- NextButton.Text = ">"
- NextButton.TextColor3 = Color3.new(0, 0, 0)
- NextButton.TextScaled = true
- NextButton.TextSize = 14
- NextButton.TextWrapped = true
- PreviousButton.Name = "PreviousButton"
- PreviousButton.Parent = F2F1_2
- PreviousButton.BackgroundColor3 = Color3.new(1, 1, 1)
- PreviousButton.BackgroundTransparency = 1
- PreviousButton.Size = UDim2.new(0, 38, 0, 34)
- PreviousButton.Visible = false
- PreviousButton.Font = Enum.Font.Fantasy
- PreviousButton.Text = "<"
- PreviousButton.TextColor3 = Color3.new(0, 0, 0)
- PreviousButton.TextScaled = true
- PreviousButton.TextSize = 14
- PreviousButton.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement