Advertisement
iiJosephCats205

MAUIFY

Apr 28th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.29 KB | None | 0 0
  1. local VanGui = Instance.new("ScreenGui")
  2. local Van = Instance.new("Frame")
  3. local idk = Instance.new("TextBox")
  4. local dsa = Instance.new("TextButton")
  5.  
  6. VanGui.Name = "ufo"
  7. VanGui.Parent = game.Players.LocalPlayer.PlayerGui
  8.  
  9. Van.Name = "ufo"
  10. Van.Parent = VanGui
  11. Van.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  12. Van.BorderColor3 = Color3.new(0, 0, 0)
  13. Van.Position = UDim2.new(0, 5, 0.8, 0)
  14. Van.Size = UDim2.new(0, 200, 0, 45)
  15.  
  16. idk.Name = "idk"
  17. idk.Parent = Van
  18. idk.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  19. idk.BorderColor3 = Color3.new(0, 0, 0)
  20. idk.Size = UDim2.new(1, 0, 0, 20)
  21. idk.Font = Enum.Font.SciFi
  22. idk.FontSize = Enum.FontSize.Size14
  23. idk.Text = "Username"
  24. idk.TextColor3 = Color3.new(1, 1, 1)
  25. idk.TextScaled = true
  26. idk.TextStrokeTransparency = 0
  27. idk.TextWrapped = true
  28.  
  29. dsa.Name = "dsa"
  30. dsa.Parent = Van
  31. dsa.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  32. dsa.BorderColor3 = Color3.new(0, 0, 0)
  33. dsa.Position = UDim2.new(0, 0, 1, -25)
  34. dsa.Size = UDim2.new(1, 0, 0, 25)
  35. dsa.Font = Enum.Font.SciFi
  36. dsa.FontSize = Enum.FontSize.Size14
  37. dsa.Text = "MAUIFY THAT BITCH"
  38. dsa.TextColor3 = Color3.new(1, 1, 1)
  39. dsa.TextScaled = true
  40. dsa.TextStrokeTransparency = 0
  41. dsa.TextWrapped = true
  42.  
  43.  
  44. dsa.MouseButton1Click:connect(function()
  45. Victim = idk.Text
  46. if game.Players:FindFirstChild(Victim) and game.Workspace:FindFirstChild('ufoparthaha') == nil then
  47. -- Objects
  48.  
  49. local MotherFucked = Instance.new("ScreenGui")
  50. local Bitch = Instance.new("ImageLabel")
  51. local Fucker = Instance.new("TextLabel")
  52.  
  53. -- Properties
  54.  
  55. MotherFucked.Name = "MotherFucked"
  56. MotherFucked.Parent = game.Players:WaitForChild(Victim).PlayerGui
  57.  
  58. Bitch.Name = "Bitch"
  59. Bitch.Parent = MotherFucked
  60. Bitch.BackgroundColor3 = Color3.new(1, 1, 1)
  61. Bitch.Size = UDim2.new(1, 0, 1, 0)
  62. Bitch.Image = "rbxassetid://601962439"
  63.  
  64. Fucker.Name = "Fucker"
  65. Fucker.Parent = MotherFucked
  66. Fucker.BackgroundColor3 = Color3.new(1, 1, 1)
  67. Fucker.BackgroundTransparency = 1
  68. Fucker.Size = UDim2.new(1, 0, 0, 70)
  69. Fucker.Font = Enum.Font.Cartoon
  70. Fucker.Text = "IT'S MAUI TIME"
  71. Fucker.TextColor3 = Color3.new(1, 1, 1)
  72. Fucker.TextScaled = true
  73. Fucker.TextSize = 14
  74. Fucker.TextStrokeTransparency = 0
  75. Fucker.TextWrapped = true
  76. end
  77. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement