SHOW:
|
|
- or go back to the newest paste.
| 1 | --[[ | |
| 2 | Made by Nev Zandra | |
| 3 | --]] | |
| 4 | local ScreenGui = Instance.new("ScreenGui")
| |
| 5 | local MainFrame = Instance.new("ImageLabel")
| |
| 6 | local ClickTP = Instance.new("TextButton")
| |
| 7 | local CloseB = Instance.new("TextButton")
| |
| 8 | local INFJUMP = Instance.new("TextButton")
| |
| 9 | local OpenB = Instance.new("TextButton")
| |
| 10 | ||
| 11 | --Properties: | |
| 12 | ||
| 13 | ScreenGui.Parent = game.CoreGui | |
| 14 | ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling | |
| 15 | ||
| 16 | MainFrame.Name = "MainFrame" | |
| 17 | MainFrame.Parent = ScreenGui | |
| 18 | MainFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255) | |
| 19 | MainFrame.Position = UDim2.new(0.427115172, 0, 0.298597217, 0) | |
| 20 | MainFrame.Size = UDim2.new(0, 219, 0, 201) | |
| 21 | MainFrame.Visible = false | |
| 22 | MainFrame.Image = "http://www.roblox.com/asset/?id=4695436661" | |
| 23 | ||
| 24 | ClickTP.Name = "ClickTP" | |
| 25 | ClickTP.Parent = MainFrame | |
| 26 | ClickTP.BackgroundColor3 = Color3.fromRGB(85, 0, 255) | |
| 27 | ClickTP.Position = UDim2.new(0.14611873, 0, 0.761193991, 0) | |
| 28 | ClickTP.Size = UDim2.new(0, 154, 0, 40) | |
| 29 | ClickTP.Font = Enum.Font.SciFi | |
| 30 | ClickTP.Text = "Ctrl Click TP" | |
| 31 | ClickTP.TextColor3 = Color3.fromRGB(255, 0, 0) | |
| 32 | ClickTP.TextScaled = true | |
| 33 | ClickTP.TextSize = 14.000 | |
| 34 | ClickTP.TextWrapped = true | |
| 35 | ClickTP.MouseButton1Down:connect(function() | |
| 36 | local Imput = game:GetService("UserInputService")
| |
| 37 | local Plr = game.Players.LocalPlayer | |
| 38 | local Mouse = Plr:GetMouse() | |
| 39 | ||
| 40 | function To(position) | |
| 41 | local Chr = Plr.Character | |
| 42 | if Chr ~= nil then | |
| 43 | Chr:MoveTo(position) | |
| 44 | end | |
| 45 | end | |
| 46 | ||
| 47 | Imput.InputBegan:Connect(function(input) | |
| 48 | if input.UserInputType == Enum.UserInputType.MouseButton1 and Imput:IsKeyDown(Enum.KeyCode.LeftControl) then | |
| 49 | To(Mouse.Hit.p) | |
| 50 | end | |
| 51 | end) | |
| 52 | end) | |
| 53 | ||
| 54 | CloseB.Name = "CloseB" | |
| 55 | CloseB.Parent = MainFrame | |
| 56 | CloseB.BackgroundColor3 = Color3.fromRGB(255, 0, 0) | |
| 57 | CloseB.Position = UDim2.new(0.849315047, 0, 0, 0) | |
| 58 | CloseB.Size = UDim2.new(0, 33, 0, 27) | |
| 59 | CloseB.Font = Enum.Font.SourceSans | |
| 60 | CloseB.Text = "X" | |
| 61 | CloseB.TextColor3 = Color3.fromRGB(0, 0, 0) | |
| 62 | CloseB.TextScaled = true | |
| 63 | CloseB.TextSize = 14.000 | |
| 64 | CloseB.TextWrapped = true | |
| 65 | CloseB.MouseButton1Down:connect(function() | |
| 66 | OpenB.Visible = true | |
| 67 | MainFrame.Visible = false | |
| 68 | end) | |
| 69 | ||
| 70 | INFJUMP.Name = "INFJUMP" | |
| 71 | INFJUMP.Parent = MainFrame | |
| 72 | INFJUMP.BackgroundColor3 = Color3.fromRGB(85, 0, 255) | |
| 73 | INFJUMP.Position = UDim2.new(0.146118715, 0, 0.527363181, 0) | |
| 74 | INFJUMP.Size = UDim2.new(0, 154, 0, 40) | |
| 75 | INFJUMP.Font = Enum.Font.SciFi | |
| 76 | INFJUMP.Text = "Inf. Jump" | |
| 77 | INFJUMP.TextColor3 = Color3.fromRGB(255, 0, 0) | |
| 78 | INFJUMP.TextScaled = true | |
| 79 | INFJUMP.TextSize = 14.000 | |
| 80 | INFJUMP.TextWrapped = true | |
| 81 | INFJUMP.MouseButton1Down:connect(function() | |
| 82 | local Player = game:GetService'Players'.LocalPlayer; | |
| 83 | local UIS = game:GetService'UserInputService'; | |
| 84 | ||
| 85 | - | _G.JumpHeight = 50; |
| 85 | + | _G.JumpHeight =75; |
| 86 | ||
| 87 | function Action(Object, Function) if Object ~= nil then Function(Object); end end | |
| 88 | ||
| 89 | UIS.InputBegan:connect(function(UserInput) | |
| 90 | if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then | |
| 91 | Action(Player.Character.Humanoid, function(self) | |
| 92 | if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then | |
| 93 | Action(self.Parent.HumanoidRootPart, function(self) | |
| 94 | self.Velocity = Vector3.new(0, _G.JumpHeight, 0); | |
| 95 | end) | |
| 96 | end | |
| 97 | end) | |
| 98 | end | |
| 99 | end) | |
| 100 | end) | |
| 101 | ||
| 102 | OpenB.Name = "OpenB" | |
| 103 | OpenB.Parent = ScreenGui | |
| 104 | OpenB.BackgroundColor3 = Color3.fromRGB(255, 0, 0) | |
| 105 | OpenB.Position = UDim2.new(0.436289489, 0, 0.905811608, 0) | |
| 106 | OpenB.Size = UDim2.new(0, 200, 0, 40) | |
| 107 | OpenB.Font = Enum.Font.SciFi | |
| 108 | OpenB.Text = "Open" | |
| 109 | OpenB.TextColor3 = Color3.fromRGB(85, 0, 255) | |
| 110 | OpenB.TextScaled = true | |
| 111 | OpenB.TextSize = 14.000 | |
| 112 | OpenB.TextStrokeColor3 = Color3.fromRGB(85, 0, 255) | |
| 113 | OpenB.TextWrapped = true | |
| 114 | OpenB.MouseButton1Down:connect(function() | |
| 115 | MainFrame.Visible = true | |
| 116 | OpenB.Visible = false | |
| 117 | end) | |
| 118 | ||
| 119 | -- Scripts: | |
| 120 | ||
| 121 | local function WSHX_fake_script() -- MainFrame.LocalScript | |
| 122 | local script = Instance.new('LocalScript', MainFrame)
| |
| 123 | ||
| 124 | script.parent.Selectable = true | |
| 125 | script.Parent.Active = true | |
| 126 | script.parent.Draggable = true | |
| 127 | end | |
| 128 | coroutine.wrap(WSHX_fake_script)() | |
| 129 | local function OOTW_fake_script() -- ScreenGui.LocalScript | |
| 130 | local script = Instance.new('LocalScript', ScreenGui)
| |
| 131 | ||
| 132 | game:GetService("StarterGui"):SetCore("SendNotification",{
| |
| 133 | Title = "NevZGUI V2", | |
| 134 | Text = "Created By Nev Zandra", | |
| 135 | text2 = "Gui Created By Nev Zandra", | |
| 136 | Duration = 10, | |
| 137 | }) | |
| 138 | end | |
| 139 | coroutine.wrap(OOTW_fake_script)() |