realstar101

Untitled

Apr 11th, 2017
59
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.15 KB | None | 0 0
  1. --Made by OpTic Wisdom/LikeATrollFace
  2.  
  3. game:GetObjects("rbxassetid://482140202")[1].Parent=game.Players.LocalPlayer.Backpack
  4. wait(0.1)
  5. local Tool = game.Players.LocalPlayer.Backpack.WaterBottle;
  6.  
  7. enabled = true
  8.  
  9.  
  10.  
  11.  
  12. function onActivated()
  13. if not enabled then
  14. return
  15. end
  16.  
  17. enabled = false
  18. Tool.Base.Transparency = 0
  19. Tool.Lid.Transparency = 0
  20. Tool.GripForward = Vector3.new(0.736, 0.676, 0.029)
  21. Tool.GripPos = Vector3.new(-0.655, -0.031, 1.794)
  22. Tool.GripRight = Vector3.new(-0.03, -0.01, 1)
  23. Tool.GripUp = Vector3.new(-0.676, 0.737, -0.013)
  24.  
  25.  
  26. Tool.Handle.OpenSound:Play()
  27. Tool.Base.Spark:Play()
  28. local alx = Instance.new("Fire")
  29. alx.Parent = Tool.Effects
  30. alx.Size = 2
  31. alx.Heat = 4
  32. wait(4)
  33. alx:Destroy()
  34.  
  35. wait(2)
  36.  
  37. local h = Tool.Parent:FindFirstChild("Humanoid")
  38. if (h ~= nil) then
  39. if (h.MaxHealth == 100) then
  40. h.MaxHealth = h.MaxHealth + 320
  41. h.Health = h.Health + 320
  42. else
  43. h.Health = h.MaxHealth
  44. end
  45. end
  46.  
  47. game.Players.LocalPlayer.Character.WaterBottle.Base.Transparency = 1
  48. game.Players.LocalPlayer.Character.WaterBottle.Lid.Transparency = 1
  49. game.Players.LocalPlayer.Character.WaterBottle.GripForward = Vector3.new(-0.04, 0.999, 0.028)
  50. game.Players.LocalPlayer.Character.WaterBottle.GripPos = Vector3.new(0.007, -0.058, 0.291)
  51. game.Players.LocalPlayer.Character.WaterBottle.GripRight = Vector3.new(0.044, -0.026, 0.999)
  52. game.Players.LocalPlayer.Character.WaterBottle.GripUp = Vector3.new(-0.998, -0.042, 0.043)
  53.  
  54. local s = Instance.new("Smoke")
  55. s.Parent = game.Players.LocalPlayer.Character.WaterBottle.Parent.Head
  56. cough = Instance.new("Sound")
  57. cough.Parent = game.Workspace
  58. cough.Volume = 0.8
  59. cough.SoundId = "http://www.roblox.com/asset/?id=271820055"
  60. cough.Pitch = 1
  61. cough.Name = "Sound"
  62. wait(1)
  63. cough:Play()
  64.  
  65. wait(8)
  66. s:Destroy()
  67. cough:Destroy()
  68.  
  69.  
  70. enabled = true
  71.  
  72. end
  73.  
  74. function onEquipped()
  75. game.Players.LocalPlayer.Character.WaterBottle.Handle.OpenSound:play()
  76. end
  77.  
  78. game.Players.LocalPlayer.Backpack.WaterBottle.Activated:connect(onActivated)
  79. game.Players.LocalPlayer.Backpack.WaterBottle.Equipped:connect(onEquipped)
Add Comment
Please, Sign In to add comment