maskub1234

mashubBG

Nov 26th, 2021 (edited)
339
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.55 KB | None | 0 0
  1. local library = loadstring(game:HttpGet("https://gist.githubusercontent.com/koio08199za/5121bfa15c12af9e0dc3ab23745213e5/raw/5e509dc9291b4250cec7f4af79d7c3229c9bac13/Test"))()
  2. local venyx = library.new("MAS HUB", 5013109572)
  3.  
  4. -- themes
  5. local themes = {
  6.     Glow = Color3.fromRGB(0, 165, 248),
  7.     TextColor = Color3.fromRGB(0, 183, 255)
  8. }
  9. local page = venyx:addPage("More", 5012544693)
  10. local section1 = page:addSection("HACK")
  11.  
  12. Fly = false
  13.         function activatefly()
  14.             local mouse=game.Players.LocalPlayer:GetMouse''
  15.             localplayer=game.Players.LocalPlayer
  16.             game.Players.LocalPlayer.Character:WaitForChild("HumanoidRootPart")
  17.             local torso = game.Players.LocalPlayer.Character.HumanoidRootPart
  18.             local speedSET=5
  19.             local keys={a=false,d=false,w=false,s=false}
  20.             local e1
  21.             local e2
  22.             local function start()
  23.                 local pos = Instance.new("BodyPosition",torso)
  24.                 local gyro = Instance.new("BodyGyro",torso)
  25.                 pos.Name="EPIXPOS"
  26.                 pos.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  27.                 pos.position = torso.Position
  28.                 gyro.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  29.                 gyro.cframe = torso.CFrame
  30.                 repeat
  31.                     wait()
  32.                     localplayer.Character.Humanoid.PlatformStand=true
  33.                     local new=gyro.cframe - gyro.cframe.p + pos.position
  34.                     if not keys.w and not keys.s and not keys.a and not keys.d then
  35.                         speed=1
  36.                     end
  37.                     if keys.w then
  38.                         new = new + workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  39.                         speed=speed+speedSET
  40.                     end
  41.                     if keys.s then
  42.                         new = new - workspace.CurrentCamera.CoordinateFrame.lookVector * speed
  43.                         speed=speed+speedSET
  44.                     end
  45.                     if keys.d then
  46.                         new = new * CFrame.new(speed,0,0)
  47.                         speed=speed+speedSET
  48.                     end
  49.                     if keys.a then
  50.                         new = new * CFrame.new(-speed,0,0)
  51.                         speed=speed+speedSET
  52.                     end
  53.                     if speed>speedSET then
  54.                         speed=speedSET
  55.                     end
  56.                     pos.position=new.p
  57.                     if keys.w then
  58.                         gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(-math.rad(speed*1),0,0)
  59.                     elseif keys.s then
  60.                         gyro.cframe = workspace.CurrentCamera.CoordinateFrame*CFrame.Angles(math.rad(speed*1),0,0)
  61.                     else
  62.                         gyro.cframe = workspace.CurrentCamera.CoordinateFrame
  63.                     end
  64.                 until not Fly
  65.                 if gyro then
  66.                     gyro:Destroy()
  67.                 end
  68.                 if pos then
  69.                     pos:Destroy()
  70.                 end
  71.                 flying=false
  72.                 localplayer.Character.Humanoid.PlatformStand=false
  73.                 speed=0
  74.             end
  75.             e1=mouse.KeyDown:connect(function(key)
  76.                 if not torso or not torso.Parent then
  77.                     flying=false e1:disconnect() e2:disconnect() return
  78.                 end
  79.                 if key=="w" then
  80.                     keys.w=true
  81.                 elseif key=="s" then
  82.                     keys.s=true
  83.                 elseif key=="a" then
  84.                     keys.a=true
  85.                 elseif key=="d" then
  86.                     keys.d=true
  87.                 end
  88.             end)
  89.             e2=mouse.KeyUp:connect(function(key)
  90.                 if key=="w" then
  91.                     keys.w=false
  92.                 elseif key=="s" then
  93.                     keys.s=false
  94.                 elseif key=="a" then
  95.                     keys.a=false
  96.                 elseif key=="d" then
  97.                     keys.d=false
  98.                 end
  99.             end)
  100.             start()
  101.         end
  102.  
  103.         section1:addToggle("Fly",false,function(Value)
  104.  
  105.             Fly = Value
  106.             activatefly()
  107.  
  108.         end)
  109.  
  110.         section1:addButton("tp boss", function()
  111.         game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(250.573196, 652.958313, -693.481812, 0.958819151, -7.76903377e-08, -0.284017384, 6.18749354e-08, 1, -6.46561205e-08, 0.284017384, 4.44199699e-08, 0.958819151)
  112.         end)
  113.        
  114.         section1:addKeybind("Toggle Keybind", Enum.KeyCode.RightControl, function()
  115.             venyx:toggle()
  116.         end, function()
  117.         end)
Add Comment
Please, Sign In to add comment