Advertisement
Guest User

Untitled

a guest
Oct 19th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.45 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local Frame_2 = Instance.new("Frame")
  9. local Frame_3 = Instance.new("Frame")
  10. local Frame_4 = Instance.new("Frame")
  11. local Frame_5 = Instance.new("Frame")
  12. local AltDel = Instance.new("TextButton")
  13. local CtrlTele = Instance.new("TextButton")
  14. local Jump = Instance.new("TextButton")
  15.  
  16. --Properties:
  17.  
  18. ScreenGui.Parent = game.CoreGui
  19. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  20.  
  21. Frame.Parent = ScreenGui
  22. Frame.BackgroundColor3 = Color3.new(0, 0, 0)
  23. Frame.BackgroundTransparency = 0.60000002384186
  24. Frame.BorderColor3 = Color3.new(0.207843, 0.0156863, 0)
  25. Frame.BorderSizePixel = 6
  26. Frame.Position = UDim2.new(0.709461808, 0, 0.565830708, 0)
  27. Frame.Size = UDim2.new(0, 265, 0, 262)
  28.  
  29. Frame_2.Parent = Frame
  30. Frame_2.BackgroundColor3 = Color3.new(0, 0, 0)
  31. Frame_2.BorderColor3 = Color3.new(1, 1, 1)
  32. Frame_2.Size = UDim2.new(0, 30, 0, 262)
  33.  
  34. Frame_3.Parent = Frame_2
  35. Frame_3.BackgroundColor3 = Color3.new(0, 0, 0)
  36. Frame_3.BorderColor3 = Color3.new(1, 1, 1)
  37. Frame_3.Position = UDim2.new(7.82012606, 0, 0, 0)
  38. Frame_3.Size = UDim2.new(0, 30, 0, 262)
  39.  
  40. Frame_4.Parent = Frame
  41. Frame_4.BackgroundColor3 = Color3.new(0, 0, 0)
  42. Frame_4.BorderColor3 = Color3.new(1, 1, 1)
  43. Frame_4.Size = UDim2.new(0, 265, 0, 32)
  44.  
  45. Frame_5.Parent = Frame
  46. Frame_5.BackgroundColor3 = Color3.new(0, 0, 0)
  47. Frame_5.BorderColor3 = Color3.new(1, 1, 1)
  48. Frame_5.Position = UDim2.new(0, 0, 0.877862573, 0)
  49. Frame_5.Size = UDim2.new(0, 265, 0, 32)
  50.  
  51. AltDel.Name = "Alt Del"
  52. AltDel.Parent = Frame
  53. AltDel.BackgroundColor3 = Color3.new(0, 0, 0)
  54. AltDel.BorderColor3 = Color3.new(1, 1, 1)
  55. AltDel.Position = UDim2.new(0.665664971, 0, 0.651941955, 0)
  56. AltDel.Size = UDim2.new(0, 58, 0, 59)
  57. AltDel.Font = Enum.Font.SciFi
  58. AltDel.Text = "Alt Del"
  59. AltDel.TextColor3 = Color3.new(1, 1, 1)
  60. AltDel.TextSize = 14
  61.  
  62. CtrlTele.Name = "Ctrl Tele"
  63. CtrlTele.Parent = Frame
  64. CtrlTele.BackgroundColor3 = Color3.new(0, 0, 0)
  65. CtrlTele.BorderColor3 = Color3.new(1, 1, 1)
  66. CtrlTele.Position = UDim2.new(0.109896958, 0, 0.651941955, 0)
  67. CtrlTele.Size = UDim2.new(0, 58, 0, 60)
  68. CtrlTele.Font = Enum.Font.SciFi
  69. CtrlTele.Text = "Ctrl Tele"
  70. CtrlTele.TextColor3 = Color3.new(1, 1, 1)
  71. CtrlTele.TextSize = 14
  72. CtrlTele.TextStrokeColor3 = Color3.new(1, 1, 1)
  73.  
  74. Jump.Name = "Jump"
  75. Jump.Parent = Frame
  76. Jump.BackgroundColor3 = Color3.new(0, 0, 0)
  77. Jump.BorderColor3 = Color3.new(1, 1, 1)
  78. Jump.Position = UDim2.new(0.113557816, 0, 0.120414436, 0)
  79. Jump.Size = UDim2.new(0, 58, 0, 59)
  80. Jump.Font = Enum.Font.SciFi
  81. Jump.Text = "Inf Jump"
  82. Jump.TextColor3 = Color3.new(1, 1, 1)
  83. Jump.TextSize = 14
  84.  
  85. -- Scripts:
  86.  
  87. local function XVGGLA_fake_script() -- AltDel.LocalScript
  88. local script = Instance.new('LocalScript', AltDel)
  89.  
  90. local Plr = game:GetService("Players").LocalPlayer
  91. local Mouse = Plr:GetMouse()
  92.  
  93. Mouse.Button1Down:connect(function()
  94. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  95. if not Mouse.Target then return end
  96. Plr.Character:MoveTo(Mouse.Hit.p)
  97. end)
  98. end
  99. coroutine.wrap(XVGGLA_fake_script)()
  100. local function HHHM_fake_script() -- CtrlTele.LocalScript
  101. local script = Instance.new('LocalScript', CtrlTele)
  102.  
  103. local Plr = game:GetService("Players").LocalPlayer
  104. local Mouse = Plr:GetMouse()
  105.  
  106. Mouse.Button2Down:connect(function()
  107. if not game:GetService("UserInputService"):IsKeyDown(Enum.KeyCode.LeftControl) then return end
  108. if not Mouse.Target then return end
  109. Mouse.Target:Destroy()
  110. end)
  111. end
  112. coroutine.wrap(HHHM_fake_script)()
  113. local function DLVF_fake_script() -- Jump.LocalScript
  114. local script = Instance.new('LocalScript', Jump)
  115.  
  116. local Player = game:GetService'Players'.LocalPlayer;
  117. local UIS = game:GetService'UserInputService';
  118.  
  119. _G.JumpHeight = 50;
  120.  
  121. function Action(Object, Function) if Object ~= nil then Function(Object); end end
  122.  
  123. UIS.InputBegan:connect(function(UserInput)
  124. if UserInput.UserInputType == Enum.UserInputType.Keyboard and UserInput.KeyCode == Enum.KeyCode.Space then
  125. Action(Player.Character.Humanoid, function(self)
  126. if self:GetState() == Enum.HumanoidStateType.Jumping or self:GetState() == Enum.HumanoidStateType.Freefall then
  127. Action(self.Parent.HumanoidRootPart, function(self)
  128. self.Velocity = Vector3.new(0, _G.JumpHeight, 0);
  129. end)
  130. end
  131. end)
  132. end
  133. end)
  134. end
  135. coroutine.wrap(DLVF_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement