FantasyGamer

Untitled

Jun 22nd, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.59 KB | None | 0 0
  1. -- Objects
  2.  
  3. local Trigger = Instance.new("ScreenGui")
  4. local Frame = Instance.new("Frame")
  5. local Trigger_2 = Instance.new("TextButton")
  6.  
  7. -- Properties
  8.  
  9. Trigger.Name = "Trigger"
  10. Trigger.Parent = game.Players.LocalPlayer.PlayerGui
  11. Trigger.ResetOnSpawn = false
  12.  
  13. Frame.Parent = Trigger
  14. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  15. Frame.Size = UDim2.new(0, 200, 0, 50)
  16.  
  17. Trigger_2.Name = "Trigger"
  18. Trigger_2.Parent = Frame
  19. Trigger_2.BackgroundColor3 = Color3.new(1, 1, 1)
  20. Trigger_2.Size = UDim2.new(0, 200, 0, 50)
  21. Trigger_2.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  22. Trigger_2.Font = Enum.Font.SourceSans
  23. Trigger_2.FontSize = Enum.FontSize.Size14
  24. Trigger_2.Text = "TRIGGER"
  25. Trigger_2.TextSize = 14
  26. ------------------------------------------
  27. Trigger_2.MouseButton1Down:Connect(function()
  28. Victim = game.Players["LocalPlayer"]
  29. Victim = Victim.Character
  30. o1 = Instance.new("Sound")
  31. o1.Parent = Victim.Head
  32. o1.SoundId = "rbxassetid://429400881"
  33. o1:Play()
  34. o1 = Instance.new("Sound")
  35. o1.Name = "SoundofPain"
  36. o1.Parent = Victim.Head
  37. o1.Volume = 3
  38. o1.SoundId = "rbxassetid://606862847"
  39. o1:Play()
  40. Victim.Head.face.Texture = "http://www.roblox.com/asset/?id=412416747"
  41. Victim.Head.BrickColor = BrickColor.New("Maroon")
  42. for i=1, 10 do
  43. wait(.1)
  44. Victim.Head.Size = Victim.Head.Size *1.3
  45. end
  46. g = Instance.new("Explosion")
  47. g.Parent = workspace
  48. g.Position = Victim.Head.Position
  49. g.BlastRadius = 200
  50. g.BlastPressure = 100000
  51. PS33 = Instance.new("Sound")
  52. PS33.Name = "Boom"
  53. PS33.Parent = workspace
  54. PS33.SoundId = "rbxassetid://165969964"
  55. PS33.Volume = 10
  56. PS33:Play()
  57. Victim.Head:Destroy()
  58. end)
Advertisement
Add Comment
Please, Sign In to add comment