Advertisement
Guest User

gui

a guest
Apr 26th, 2019
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.92 KB | None | 0 0
  1. local FuckingPlayer = Instance.new("ScreenGui")
  2. local TheDamnFrame = Instance.new("Frame")
  3. local Logo = Instance.new("TextLabel")
  4. local Play = Instance.new("TextButton")
  5. local ID = Instance.new("TextBox")
  6.  
  7. FuckingPlayer.Name = "Fucking Player"
  8. FuckingPlayer.Parent = game.CoreGui
  9.  
  10. TheDamnFrame.Name = "The Damn Frame"
  11. TheDamnFrame.Parent = FuckingPlayer
  12. TheDamnFrame.BackgroundColor3 = Color3.new(1, 1, 1)
  13. TheDamnFrame.Position = UDim2.new(0.427121103, 0, 0.404336751, 0)
  14. TheDamnFrame.Size = UDim2.new(0, 200, 0, 150)
  15. TheDamnFrame.Active = true
  16. TheDamnFrame.Draggable = true
  17.  
  18. Logo.Name = "Logo"
  19. Logo.Parent = TheDamnFrame
  20. Logo.BackgroundColor3 = Color3.new(1, 0, 0)
  21. Logo.Position = UDim2.new(0.00212109555, 0, -0.00232994556, 0)
  22. Logo.Size = UDim2.new(0, 200, 0, 50)
  23. Logo.Font = Enum.Font.GothamSemibold
  24. Logo.Text = "Gui made by GETREKTMATE || EASY"
  25. Logo.TextColor3 = Color3.new(0, 0, 0)
  26. Logo.TextScaled = true
  27. Logo.TextSize = 14
  28. Logo.TextWrapped = true
  29.  
  30. Play.Name = "Play"
  31. Play.Parent = TheDamnFrame
  32. Play.BackgroundColor3 = Color3.new(1, 0, 0)
  33. Play.Position = UDim2.new(0, 0, 0.666666687, 0)
  34. Play.Size = UDim2.new(0, 200, 0, 50)
  35. Play.Font = Enum.Font.Highway
  36. Play.Text = "PLAY THAT FUCKING SICK BEAT"
  37. Play.TextColor3 = Color3.new(0, 0, 0)
  38. Play.TextScaled = true
  39. Play.TextSize = 14
  40. Play.TextWrapped = true
  41.  
  42. ID.Name = "ID"
  43. ID.Parent = TheDamnFrame
  44. ID.BackgroundColor3 = Color3.new(1, 0, 0)
  45. ID.Position = UDim2.new(0, 0, 0.333333343, 0)
  46. ID.Size = UDim2.new(0, 200, 0, 50)
  47. ID.Font = Enum.Font.Highway
  48. ID.PlaceholderColor3 = Color3.new(0, 0, 0)
  49. ID.PlaceholderText = "Insert You'r ID Here"
  50. ID.Text = ""
  51. ID.TextColor3 = Color3.new(0, 0, 0)
  52. ID.TextScaled = true
  53. ID.TextSize = 14
  54. ID.TextWrapped = true
  55.  
  56.  
  57. local remo = game.Players.LocalPlayer.Character:FindFirstChildOfClass("Tool"):FindFirstChildOfClass("RemoteEvent")
  58.  
  59. Play.MouseButton1Down:connect(function()
  60. local ID = ID.Text
  61. remo:FireServer("PlaySong", ID)
  62. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement