Advertisement
iiJosephCats205

dddd

Aug 25th, 2018
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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 = "SCARE"
  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. local ScreenGui = Instance.new("ScreenGui")
  48. local ImageLabel = Instance.new("ImageLabel")
  49. --Properties:
  50. ScreenGui.Parent = game.Players[Victim]:WaitForChild("PlayerGui")
  51.  
  52. ImageLabel.Parent = ScreenGui
  53. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  54. ImageLabel.Size = UDim2.new(1, 0, 1, 0)
  55. ImageLabel.Image = "http://www.roblox.com/asset/?id=93439686"
  56. -- Scripts:
  57.  
  58. wait(5)
  59. local scream = Instance.new("Sound",workspace)
  60. scream.SoundId = "rbxassetid://176238381"
  61. scream:Play()
  62. ImageLabel.Image = "http://www.roblox.com/asset/?id=273888999"
  63. while true do
  64. wait(0.01)
  65. ImageLabel.ImageColor3 = Color3.new(0,0,255)
  66. wait(0.01)
  67. ImageLabel.ImageColor3 = Color3.new(255,255,255)
  68. end
  69. end
  70. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement