Advertisement
proHDscirpts

Untitled

May 25th, 2022
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.40 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local label = Instance.new("TextLabel")
  6. local label_2 = Instance.new("TextLabel")
  7. local Noclip = Instance.new("TextButton")
  8. local Fly = Instance.new("TextButton")
  9.  
  10. --Properties:
  11.  
  12. ScreenGui.Parent = game.CoreGui
  13.  
  14. main.Name = "main"
  15. main.Parent = ScreenGui
  16. main.BackgroundColor3 = Color3.fromRGB(175, 175, 175)
  17. main.Position = UDim2.new(0.614678919, 0, 0.33456561, 0)
  18. main.Size = UDim2.new(0, 273, 0, 240)
  19. main.Active = true
  20. main.Draggable = true
  21.  
  22. label.Name = "label"
  23. label.Parent = main
  24. label.BackgroundColor3 = Color3.fromRGB(93, 93, 93)
  25. label.Size = UDim2.new(0, 273, 0, 50)
  26. label.Font = Enum.Font.SourceSans
  27. label.Text = "Basic Script hub"
  28. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  29. label.TextSize = 14.000
  30.  
  31. label_2.Name = "label"
  32. label_2.Parent = main
  33. label_2.BackgroundColor3 = Color3.fromRGB(93, 93, 93)
  34. label_2.Position = UDim2.new(0, 0, 0.791666687, 0)
  35. label_2.Size = UDim2.new(0, 273, 0, 50)
  36. label_2.Font = Enum.Font.SourceSans
  37. label_2.Text = "Made by exalatiz#9999"
  38. label_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  39. label_2.TextSize = 14.000
  40.  
  41. Noclip.Name = "Noclip"
  42. Noclip.Parent = main
  43. Noclip.BackgroundColor3 = Color3.fromRGB(149, 149, 149)
  44. Noclip.Position = UDim2.new(0.0219780225, 0, 0.245833337, 0)
  45. Noclip.Size = UDim2.new(0, 260, 0, 65)
  46. Noclip.Font = Enum.Font.SourceSans
  47. Noclip.Text = "Noclip E on /off"
  48. Noclip.TextColor3 = Color3.fromRGB(0, 0, 0)
  49. Noclip.TextSize = 14.000
  50. Noclip.MouseButton1Down:connect(function()
  51. Noclip = false
  52. game:GetService('RunService').Stepped:Connect(function()
  53. if Noclip then
  54. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  55.  
  56. end
  57. end)
  58.  
  59. local p = game.Players.LocalPlayer
  60. local mo = p:GetMouse()
  61.  
  62. mo.KeyDown:Connect(function(k)
  63. if k == 'e' then
  64. Noclip = not Noclip
  65. p.Character.Humanoid:ChangeState(11)
  66. end
  67. end)
  68. end)
  69.  
  70. Fly.Name = "Fly"
  71. Fly.Parent = main
  72. Fly.BackgroundColor3 = Color3.fromRGB(149, 149, 149)
  73. Fly.Position = UDim2.new(0.0219780225, 0, 0.520833373, 0)
  74. Fly.Size = UDim2.new(0, 260, 0, 65)
  75. Fly.Font = Enum.Font.SourceSans
  76. Fly.Text = "Fly"
  77. Fly.TextColor3 = Color3.fromRGB(0, 0, 0)
  78. Fly.TextSize = 14.000
  79. Fly.MouseButton1Down:connect(function()
  80. repeat wait() until game.Players.LocalPlayer.Character
  81.  
  82. local plr = game.Players.LocalPlayer
  83. local char = plr.Character
  84. local hum = char:WaitForChild("Humanoid")
  85. local Torso = char:WaitForChild("LowerTorso")
  86. local Mouse = plr:GetMouse()
  87. local toggle = false
  88.  
  89. Mouse.KeyDown:Connect(function(key)
  90. if key == "f" then
  91. if toggle == false then
  92. toggle = true
  93. local Anim = Instance.new("Animation")
  94. Anim.AnimationId = "rbxassetid://7189034627"
  95. local PlayAnim = hum:LoadAnimation(Anim)
  96. PlayAnim:Play()
  97. local BV = Instance.new("BodyVelocity",Torso)
  98. BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  99. while toggle == true do
  100. BV.Velocity = Mouse.Hit.lookVector*100
  101. wait()
  102. end
  103. end
  104. if toggle == true then
  105. toggle = false
  106. Torso:FindFirstChildOfClass("BodyVelocity"):remove()
  107. local tracks = hum:GetPlayingAnimationTracks()
  108. for i, stoptracks in pairs(tracks) do
  109. stoptracks:Stop()
  110. end
  111. local Anim = Instance.new("Animation")
  112. Anim.AnimationId = "http://www.roblox.com/asset/?id=7189034627"
  113. local PlayAnim = hum:LoadAnimation(Anim)
  114. PlayAnim:Play()
  115. end
  116. end
  117. end)
  118. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement