Gostrondude

Untitled

Dec 30th, 2017
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.97 KB | None | 0 0
  1. -- Objects
  2.  
  3. local GUI = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local TextButton = Instance.new("TextButton")
  6.  
  7. -- Properties
  8.  
  9. GUI.Parent = game.CoreGui
  10. GUI.Name = "LOLMYGUIISBETTERTHANALL" --must have these four lines (may rename to things such as screen gui, etc)
  11. GUI.Enabled = true
  12. GUI.ResetOnSpawn = false
  13.  
  14. Frame.Parent = GUI
  15. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Frame.Position = UDim2.new(0.375820041, 0, 0.305084735, 0)
  17. Frame.Size = UDim2.new(0, 231, 0, 143)
  18.  
  19. TextButton.Parent = Frame
  20. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  21. TextButton.Position = UDim2.new(0.0670995638, 0, 0.325174838)
  22. TextButton.Size = UDim2.new(0, 200, 0, 50)
  23. TextButton.Font = Enum.Font.SourceSans
  24. TextButton.Text = "Grab Knife V4"
  25. TextButton.TextSize = 14
  26.  
  27. TextButton.MouseButton1Click:connect(function() --name of button goes where textbutton is
  28. loadstring(game:HttpGet("https://pastebin.com/raw/xAtpvaZT",true)) --script here
  29. end) --end
Advertisement
Add Comment
Please, Sign In to add comment