Advertisement
Quonn

Fly Script

Sep 18th, 2021
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextLabel")
  9. local TextButton = Instance.new("TextButton")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15.  
  16. Main.Name = "Main"
  17. Main.Parent = ScreenGui
  18. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  19. Main.Position = UDim2.new(0.432471335, 0, 0.271805227, 0)
  20. Main.Size = UDim2.new(0, 168, 0, 147)
  21.  
  22. TextLabel.Parent = Main
  23. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  24. TextLabel.Size = UDim2.new(0, 168, 0, 97)
  25. TextLabel.Font = Enum.Font.Bangers
  26. TextLabel.Text = "DION'S MODZ v2.1"
  27. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  28. TextLabel.TextSize = 26.000
  29.  
  30. TextButton.Parent = Main
  31. TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  32. TextButton.Position = UDim2.new(0.494047612, 0, 0.659863949, 0)
  33. TextButton.Size = UDim2.new(0, 85, 0, 50)
  34. TextButton.Font = Enum.Font.SciFi
  35. TextButton.Text = "Fly"
  36. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  37. TextButton.TextSize = 21.000
  38.  
  39. TextLabel_2.Parent = Main
  40. TextLabel_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  41. TextLabel_2.Position = UDim2.new(0, 0, 0.659863949, 0)
  42. TextLabel_2.Size = UDim2.new(0, 83, 0, 50)
  43. TextLabel_2.Font = Enum.Font.Bangers
  44. TextLabel_2.Text = "TOGGLE FLY = E"
  45. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  46. TextLabel_2.TextSize = 14.000
  47. TextButton.MouseButton1Down:connect(function()
  48. loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
  49. end)
  50. -- Scripts:
  51.  
  52. local function DQKRPA_fake_script() -- ScreenGui.Script
  53. local script = Instance.new('Script', ScreenGui)
  54.  
  55. frame = script.Parent.Main -- Take out {}s, and put name of frame
  56. frame.Draggable = true
  57. frame.Active = true
  58. frame.Selectable = true
  59. end
  60. coroutine.wrap(DQKRPA_fake_script)()
  61.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement