Advertisement
Guest User

Drop

a guest
Mar 31st, 2020
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Drop = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  13.  
  14. Drop.Name = "Drop"
  15. Drop.Parent = ScreenGui
  16. Drop.BackgroundColor3 = Color3.fromRGB(68, 6, 255)
  17. Drop.BackgroundTransparency = 0.300
  18. Drop.Position = UDim2.new(0, 0, 0.81572479, 0)
  19. Drop.Size = UDim2.new(0, 200, 0, 50)
  20. Drop.Font = Enum.Font.GothamBlack
  21. Drop.Text = "Enable Drop"
  22. Drop.TextColor3 = Color3.fromRGB(0, 0, 0)
  23. Drop.TextScaled = true
  24. Drop.TextSize = 14.000
  25. Drop.TextWrapped = true
  26. Drop.MouseButton1Down:connect(function()
  27. loadstring(game:GetObjects("rbxassetid://4840141002")[1].Source)()
  28. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement