Fly And Destroy 1 0

broken image


Two in a corner, 1 in a room, 0 in a house, but 1 in a shelter. R: 206.Forward.backwards. is what I do all day. I come in all different shapes and sizes. I can be scary, and I can calm you down. Rocking Chair: 207: You get embarrassed when you stand on me when everybody is watching. Added objects to respawn key. Instant Building Destroy (Destroy buildings with 1 hit) Unlimited Fuel (for the chainsaw). Fly: Toggle Fly mode: F6.

Apr 19th, 2020
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. -- Version: 3.
  2. local Main = Instance.new('Frame')
  3. local TextButton = Instance.new('TextButton')
  4. --Properties:
  5. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild('PlayerGui')
  6. Main.Name = 'Main'
  7. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  8. Main.Position = UDim2.new(0.363293529, 0, 0.28638497, 0)
  9. Main.Style = Enum.FrameStyle.ChatBlue
  10. TextLabel.Parent = Main
  11. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  12. TextLabel.Position = UDim2.new(-0.025588274, 0, -0.0890700519, 0)
  13. TextLabel.Font = Enum.Font.SciFi
  14. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  15. TextLabel.TextSize = 14.000
  16. TextButton.BackgroundColor3 = Color3.fromRGB(255, 31, 255)
  17. TextButton.Position = UDim2.new(0.136470661, 0, 0.458670378, 0)
  18. TextButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  19. TextButton.Text = 'Fly'
  20. TextButton.TextScaled = true
  21. TextButton.TextWrapped = true
  22. repeat wait()
  23. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild('Torso') and game.Players.LocalPlayer.Character:findFirstChild('Humanoid')
  24. local mouse = game.Players.LocalPlayer:GetMouse()
  25. local plr = game.Players.LocalPlayer
  26. local flying = true
  27. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  28. local maxspeed = 50
  29. local bg = Instance.new('BodyGyro', torso)
  30. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  31. local bv = Instance.new('BodyVelocity', torso)
  32. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  33. plr.Character.Humanoid.PlatformStand = true
  34. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  35. if speed > maxspeed then
  36. end
  37. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  38. if speed < 0 then
  39. end
  40. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  41. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  42. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  43. elseif (ctrl.l + ctrl.r) 0 and (ctrl.f + ctrl.b) 0 and speed ~= 0 then
  44. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  45. bv.velocity = Vector3.new(0,0.1,0)
  46. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  47. ctrl = {f = 0, b = 0, l = 0, r = 0}
  48. speed = 0
  49. bv:Destroy()
  50. end
  51. if key:lower() 'e' then
  52. else
  53. Fly()
  54. elseif key:lower() 'w' then
  55. elseif key:lower() 's' then
  56. elseif key:lower() 'a' then
  57. elseif key:lower() 'd' then
  58. end
  59. mouse.KeyUp:connect(function(key)
  60. ctrl.f = 0
  61. ctrl.b = 0
  62. ctrl.l = 0
  63. ctrl.r = 0
  64. end)
  65. end)
  66. local function LASGYB_fake_script() -- ScreenGui.Script
  67. local script = Instance.new('Script', ScreenGui)
  68. frame = script.Parent.Main -- Take out {}s, and put name of frame
  69. frame.Active = true
  70. end
RAW Paste Data
-- Gui to Lua -- Version: 3. -- Instances: local ScreenGui = Instance.new('ScreenGui') local Main = Instance.new('Frame') local TextLabel = Instance.new('TextLabel') local TextButton = Instance.new('TextButton') --Properties: ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild('PlayerGui') Main.Name = 'Main' Main.Parent = ScreenGui Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Main.Position = UDim2.new(0.363293529, 0, 0.28638497, 0) Main.Size = UDim2.new(0, 340, 0, 190) Main.Style = Enum.FrameStyle.ChatBlue TextLabel.Parent = Main TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1.000 TextLabel.Position = UDim2.new(-0.025588274, 0, -0.0890700519, 0) TextLabel.Size = UDim2.new(0, 325, 0, 50) TextLabel.Font = Enum.Font.SciFi TextLabel.Text = 'Fly Gui' TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0) TextLabel.TextScaled = true TextLabel.TextSize = 14.000 TextLabel.TextWrapped = true TextButton.Parent = Main TextButton.BackgroundColor3 = Color3.fromRGB(255, 31, 255) TextButton.Position = UDim2.new(0.136470661, 0, 0.458670378, 0) TextButton.Size = UDim2.new(0, 224, 0, 58) TextButton.Style = Enum.ButtonStyle.RobloxRoundDefaultButton TextButton.Font = Enum.Font.SciFi TextButton.Text = 'Fly' TextButton.TextColor3 = Color3.fromRGB(0, 0, 0) TextButton.TextScaled = true TextButton.TextSize = 14.000 TextButton.TextWrapped = true TextButton.MouseButton1Down:connect(function() repeat wait() until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild('Torso') and game.Players.LocalPlayer.Character:findFirstChild('Humanoid') local mouse = game.Players.LocalPlayer:GetMouse() repeat wait() until mouse local plr = game.Players.LocalPlayer local torso = plr.Character.Torso local flying = true local deb = true local ctrl = {f = 0, b = 0, l = 0, r = 0} local lastctrl = {f = 0, b = 0, l = 0, r = 0} local maxspeed = 50 local speed = 0 function Fly() local bg = Instance.new('BodyGyro', torso) bg.P = 9e4 bg.maxTorque = Vector3.new(9e9, 9e9, 9e9) bg.cframe = torso.CFrame local bv = Instance.new('BodyVelocity', torso) bv.velocity = Vector3.new(0,0.1,0) bv.maxForce = Vector3.new(9e9, 9e9, 9e9) repeat wait() plr.Character.Humanoid.PlatformStand = true if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then speed = speed+.5+(speed/maxspeed) if speed > maxspeed then speed = maxspeed end elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then speed = speed-1 if speed < 0 then speed = 0 end end if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r} elseif (ctrl.l + ctrl.r) 0 and (ctrl.f + ctrl.b) 0 and speed ~= 0 then bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed else bv.velocity = Vector3.new(0,0.1,0) end bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0) until not flying ctrl = {f = 0, b = 0, l = 0, r = 0} lastctrl = {f = 0, b = 0, l = 0, r = 0} speed = 0 bg:Destroy() bv:Destroy() plr.Character.Humanoid.PlatformStand = false end mouse.KeyDown:connect(function(key) if key:lower() 'e' then if flying then flying = false else flying = true Fly() end elseif key:lower() 'w' then ctrl.f = 1 elseif key:lower() 's' then ctrl.b = -1 elseif key:lower() 'a' then ctrl.l = -1 elseif key:lower() 'd' then ctrl.r = 1 end end) mouse.KeyUp:connect(function(key) if key:lower() 'w' then ctrl.f = 0 elseif key:lower() 's' then ctrl.b = 0 elseif key:lower() 'a' then ctrl.l = 0 elseif key:lower() 'd' then ctrl.r = 0 end end) Fly() end) -- Scripts: local function LASGYB_fake_script() -- ScreenGui.Script local script = Instance.new('Script', ScreenGui) frame = script.Parent.Main -- Take out {}s, and put name of frame frame.Draggable = true frame.Active = true frame.Selectable = true end coroutine.wrap(LASGYB_fake_script)()

Fly And Destroy 1 0 Online

38,601 downloadsUpdated: June 14, 2018Apache License 2.0

Prevent Windows 10 from tracking your activity and improve your privacy settings due to this user-friendly and intuitive software solution

What's new in Destroy Windows Spying 1.0.2.0:

  • Fix DWS stopped working
Read the full changelog

Even though Windows 10 did bring many of the features users expected of it, such as a Start Menu and revamped icons, it also came with several issues and a very important one is related to its tracking behavior. Alternote 1 0 10.

Destroy Windows Spying is one of the many applications that aims to solve this problem.

Stop Windows 10 tracking

Despite its title, this portable application can be run on computers running Windows 10, but also on PCs running Windows 7 and 8, either x86 or x64.

Once its main window is accessed, you can simply press a button and leave it to the app to stop all processes related to any activity tracking. It displays a log file that can be examined by all those who are interested in all the tasks it performs, but users do not have any control over these actions.

Remove one or more Windows 10 apps

Another handy feature of Destroy Windows Spying is that it offers you the possibility to get rid of several native Windows 10 programs.

Fly

More precisely, you can remove XBox, Solitaire, OneDrive, Mail, Calendar, People or Builder 3D, as well as various media tools (namely News, Weather or Sports).

You only need to check the box corresponding to each of these applications and wait until Destroy Windows Spying automatically removes them.

Clear or open hosts file

You can also turn to this utility when you want to access the hosts file from your Windows 10 computer or just clear all its contents.

Fly And Destroy 1 0 3

Additionally, you can access the Privacy options directly from this application and manually disable further settings. The downside of this method is that you be a tech-savvy user to make sure your actions are safe.

All in all, Destroy Windows Spying can be used by all those who are worried about their privacy when using Windows 10. Since the app does not come with many customizable functions, it is more suited for beginner users as they simply need to press a button and disable the tracking.

Filed under

Destroy Windows Spying was reviewed by Giorgiana Arghire
3.5/5
Fly

More precisely, you can remove XBox, Solitaire, OneDrive, Mail, Calendar, People or Builder 3D, as well as various media tools (namely News, Weather or Sports).

You only need to check the box corresponding to each of these applications and wait until Destroy Windows Spying automatically removes them.

Clear or open hosts file

You can also turn to this utility when you want to access the hosts file from your Windows 10 computer or just clear all its contents.

Fly And Destroy 1 0 3

Additionally, you can access the Privacy options directly from this application and manually disable further settings. The downside of this method is that you be a tech-savvy user to make sure your actions are safe.

All in all, Destroy Windows Spying can be used by all those who are worried about their privacy when using Windows 10. Since the app does not come with many customizable functions, it is more suited for beginner users as they simply need to press a button and disable the tracking.

Filed under

Destroy Windows Spying was reviewed by Giorgiana Arghire
3.5/5
Load comments
This enables Disqus, Inc. to process some of your data. Disqus privacy policy

Destroy Windows Spying 1.0.2.0

add to watchlistsend us an update
4 screenshots:
runs on:
Windows 10 32/64 bit
file size:
388 KB
filename:
DWS.exe
main category:
Tweak
developer:

top alternatives FREE

top alternatives PAID





broken image