Legend_HandlesYT

Untitled

Aug 20th, 2021 (edited)
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.37 KB | None | 0 0
  1. local screen = Instance.new("ScreenGui",game.CoreGui)
  2. local frame = Instance.new("Frame", screen)
  3. local frame2 = Instance.new("Frame", frame)
  4. local creds = Instance.new("TextLabel",frame2)
  5. local controls = Instance.new("TextLabel",frame)
  6. local qq = Instance.new("TextLabel",frame)
  7. local rr = Instance.new("TextLabel",frame)
  8. local ff = Instance.new("TextLabel",frame)
  9. local closer = Instance.new("TextLabel",frame)
  10. local closegui = Instance.new("TextButton", frame)
  11.  
  12.  
  13. frame.Size = UDim2.new(0.15,0,0.18,0)
  14. frame.AnchorPoint = Vector2.new(0.5,0.5)
  15. frame.Position = UDim2.new(0.5,0,0.5,0)
  16. frame.BackgroundColor3 = Color3.new(0/255,0/255,110/255)
  17. frame.BorderSizePixel = 0
  18.  
  19. frame2.Size = UDim2.new(1,0,0.2,0)
  20. frame2.Position = UDim2.new(0,0,0,0)
  21. frame2.BackgroundColor3 = Color3.new(150/255,0/255,0/255)
  22. frame2.BorderSizePixel = 0
  23.  
  24. creds.Size = UDim2.new(0.9,0,0.9,0)
  25. creds.AnchorPoint = Vector2.new(0.5,0.5)
  26. creds.Position = UDim2.new(0.5,0,0.5,0)
  27. creds.BackgroundTransparency = 1
  28. creds.BorderSizePixel = 0
  29. creds.TextColor3 = Color3.new(1,1,1)
  30. creds.TextScaled = true
  31. creds.Font = "GothamSemibold"
  32. creds.Text = "Made By Legend Handles"
  33.  
  34. controls.Size = UDim2.new(0.4,0,0.4,0)
  35. controls.AnchorPoint = Vector2.new(0.5,0)
  36. controls.Position = UDim2.new(0.5,0,0.11,0)
  37. controls.BackgroundTransparency = 1
  38. controls.BorderSizePixel = 0
  39. controls.TextColor3 = Color3.new(1,1,1)
  40. controls.TextScaled = true
  41. controls.Font = "ArialBold"
  42. controls.Text = "Controls:"
  43.  
  44. qq.Size = UDim2.new(1,0,0.1,0)
  45. qq.AnchorPoint = Vector2.new(0.5,0)
  46. qq.Position = UDim2.new(0.5,0,0.45,0)
  47. qq.BackgroundTransparency = 1
  48. qq.BorderSizePixel = 0
  49. qq.TextColor3 = Color3.new(1,1,1)
  50. qq.TextScaled = true
  51. qq.Font = "ArialBold"
  52. qq.Text = "Q - Boost Forward"
  53.  
  54. closer.Size = UDim2.new(1,0,0.07,0)
  55. closer.AnchorPoint = Vector2.new(0.5,0)
  56. closer.Position = UDim2.new(0.5,0,0.89,0)
  57. closer.BackgroundTransparency = 1
  58. closer.BorderSizePixel = 0
  59. closer.TextColor3 = Color3.new(1,0,0)
  60. closer.TextScaled = true
  61. closer.Font = "Arial"
  62. closer.Text = "- click anywhere to close -"
  63.  
  64. closegui.Size = UDim2.new(1,0,1,0)
  65. closegui.Text = ""
  66. closegui.BackgroundTransparency = 1
  67.  
  68.  
  69. local mouse = game.Players.LocalPlayer:GetMouse()
  70. local parted = false
  71.  
  72.  
  73. local part = Instance.new("Part",game.Lighting)
  74. part.Anchored = true
  75. part.Size = Vector3.new(700,1,700)
  76. part.Transparency = 0.9
  77. part.TopSurface = "Smooth"
  78.  
  79. mouse.KeyDown:connect(function(key)
  80. if key == "f" then
  81. if parted == false then
  82. part.Parent = game.Workspace
  83. part.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,10,0)
  84. game.Players.LocalPlayer.Character:MoveTo(game.Players.LocalPlayer.Character.HumanoidRootPart.Position + Vector3.new(0,18,0))
  85. parted = true
  86. else
  87. part.Parent = game.Lighting
  88. parted = false
  89. end
  90. end
  91. end)
  92.  
  93.  
  94. mouse.KeyDown:connect(function(key)
  95. if key == "q" then
  96. game.Players.LocalPlayer.Character:SetPrimaryPartCFrame(game.Players.LocalPlayer.Character:GetPrimaryPartCFrame()*CFrame.new(0, 0, -5))
  97. end
  98. end)
  99.  
  100. mouse.KeyDown:connect(function(key)
  101. if key == "r" then
  102. game.Players.LocalPlayer.Character:SetPrimaryPartCFrame(game.Players.LocalPlayer.Character:GetPrimaryPartCFrame()*CFrame.new(0, 5, 0))
  103. end
  104. end)
  105.  
  106. closegui.MouseButton1Up:connect(function()
  107. screen:Destroy()
  108. end)
Add Comment
Please, Sign In to add comment