Advertisement
alek_

BasicXploits | Intro

Apr 2nd, 2020
382
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.95 KB | None | 0 0
  1. local UI = Instance.new("ScreenGui")
  2. local UIFrame = Instance.new("Frame")
  3. local loadcmd = Instance.new("TextButton")
  4. local TextLabel = Instance.new("TextLabel")
  5. local closeui = Instance.new("TextButton")
  6. --Properties:
  7. UI.Name = "UI"
  8. UI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  9.  
  10. UIFrame.Name = "UIFrame"
  11. UIFrame.Parent = UI
  12. UIFrame.BackgroundColor3 = Color3.new(0.403922, 0.403922, 0.403922)
  13. UIFrame.BorderSizePixel = 0
  14. UIFrame.Position = UDim2.new(0.312999994, 0, -0.15, 0)
  15. UIFrame.Size = UDim2.new(0, 769, 0, 50)
  16.  
  17. TextLabel.Parent = UIFrame
  18. TextLabel.BackgroundColor3 = Color3.new(100, 0, 170)
  19. TextLabel.BorderSizePixel = 0
  20. TextLabel.Position = UDim2.new(0.356306911, 0, -0.180000007, 0)
  21. TextLabel.Size = UDim2.new(0, 221, 0, 68)
  22. TextLabel.Font = Enum.Font.SourceSansBold
  23. TextLabel.Text = "BasicXploits"
  24. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  25. TextLabel.TextScaled = true
  26. TextLabel.TextSize = 14
  27. TextLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement