Advertisement
iiJosephCats205

A gamevv

Sep 22nd, 2018
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local AdGUI = Instance.new("ScreenGui")
  5. local Aids = Instance.new("Frame")
  6. local Title = Instance.new("TextLabel")
  7. local idk = Instance.new("TextBox")
  8. local LOL = Instance.new("TextButton")
  9. --Properties:
  10. AdGUI.Name = "AdGUI"
  11. AdGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  12.  
  13. Aids.Name = "Aids"
  14. Aids.Parent = AdGUI
  15. Aids.BackgroundColor3 = Color3.new(1, 1, 1)
  16. Aids.BorderSizePixel = 0
  17. Aids.Position = UDim2.new(0.100000001, 0, 0.699999988, 0)
  18. Aids.Size = UDim2.new(0, 200, 0, 100)
  19.  
  20. Title.Name = "Title"
  21. Title.Parent = Aids
  22. Title.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  23. Title.BorderSizePixel = 0
  24. Title.Size = UDim2.new(0, 200, 0, 22)
  25. Title.Font = Enum.Font.SourceSans
  26. Title.Text = "Ad Giver Gui"
  27. Title.TextColor3 = Color3.new(0, 0, 0)
  28. Title.TextSize = 14
  29.  
  30. idk.Name = "idk"
  31. idk.Parent = Aids
  32. idk.BackgroundColor3 = Color3.new(0.568627, 0.568627, 0.568627)
  33. idk.BorderSizePixel = 0
  34. idk.Position = UDim2.new(0, 0, 0.340000004, 0)
  35. idk.Size = UDim2.new(0, 200, 0, 20)
  36. idk.Font = Enum.Font.SourceSans
  37. idk.Text = "Username"
  38. idk.TextColor3 = Color3.new(0, 0, 0)
  39. idk.TextSize = 14
  40.  
  41. LOL.Name = "LOL"
  42. LOL.Parent = Aids
  43. LOL.BackgroundColor3 = Color3.new(1, 0, 0)
  44. LOL.BorderSizePixel = 0
  45. LOL.Position = UDim2.new(0, 0, 0.669999957, 0)
  46. LOL.Size = UDim2.new(0, 200, 0, 24)
  47. LOL.Font = Enum.Font.SourceSans
  48. LOL.Text = "Send A Cute (NOT) ad"
  49. LOL.TextColor3 = Color3.new(1, 1, 1)
  50. LOL.TextSize = 14
  51. -- Scripts:
  52.  
  53. LOL.MouseButton1Down:Connect(function()
  54. local Vic = idk.Text
  55. if game.Players:WaitForChild(Vic) then
  56. if Vic ~= nil then
  57. local ScreenGui = Instance.new("ScreenGui")
  58. local ImageLabel = Instance.new("ImageLabel")
  59. local Text = Instance.new("TextLabel")
  60. --Properties:
  61. ScreenGui.Parent = game.Players[Vic]:WaitForChild("PlayerGui")
  62.  
  63. ImageLabel.Parent = ScreenGui
  64. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  65. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  66. ImageLabel.Image = "http://www.roblox.com/asset/?id=93439686"
  67.  
  68. Text.Parent = ScreenGui
  69. Text.BackgroundTransparency = 1
  70. Text.Size = UDim2.new(1,0,0,50)
  71. Text.Visible = false
  72. Text.TextColor3 = Color3.new(255,255,255)
  73. Text.TextScaled = true
  74. Text.Font = Enum.Font.Cartoon
  75. Text.Text = "HAHA YOU GOT PRANKED :) By: "..game.Players.LocalPlayer.Name
  76. -- Scripts:
  77.  
  78. wait(5)
  79. local scream = Instance.new("Sound",workspace)
  80. scream.SoundId = "rbxassetid://176238381"
  81. scream:Play()
  82. ImageLabel.Image = "http://www.roblox.com/asset/?id=273888999"
  83. while scream.Playing == true do
  84. wait(0.01)
  85. ImageLabel.ImageColor3 = Color3.new(-255,-255,-255)
  86. wait(0.01)
  87. ImageLabel.ImageColor3 = Color3.new(255,255,255)
  88. end
  89. Text.Visible = true
  90. end
  91. end
  92. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement