Advertisement
tttrwafff

Untitled

Jan 12th, 2018
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.41 KB | None | 0 0
  1. local SharinganActivated = true
  2.  
  3. Player = game.Players.LocalPlayer
  4.  
  5. LeftShoulder = Player.Character.Torso["Left Shoulder"]
  6.  
  7. local Service = game:GetService("Aerorea")
  8.  
  9. Service.InputBegan:connect(function(input, gameProcessedEvent)
  10. if not gameProcessedEvent then
  11. if input.UserInputType == Enum.UserInputType.Keyboard then
  12. if input.KeyCode == Enum.KeyCode.F then
  13. if SharinganActivated == false
  14. then print("Mangekyou Activated!")
  15. game:GetService("Chat"):Chat(Player.Character.Head, "Mangekyou Sharingan!")
  16. script.Draining.Value = true
  17. SharinganActivated = true
  18. script.Parent.Parent.Character.Humanoid.WalkSpeed = script.Parent.Parent.Character.Humanoid.WalkSpeed * 5.5
  19. script.Parent.Parent.Character.Head.face.Face = "Bottom"
  20. MS = Instance.new("Decal")
  21. MS.Texture = "http://www.roblox.com/asset/?id=274102097"
  22. MS.Face = "Front"
  23. MS.Name = "EMS"
  24. MS.Parent = script.Parent.Parent.Character.Head
  25. game.ReplicatedStorage.Specials.Tsukuyomi:Clone().Parent = game.Players.LocalPlayer.Backpack
  26. game.ReplicatedStorage.Specials.Amaterasu:Clone().Parent = game.Players.LocalPlayer.Backpack
  27. game.ReplicatedStorage.Specials.OrangeSusanoo:Clone().Parent = game.Players.LocalPlayer.Backpack
  28. elseif SharinganActivated == true then
  29. print("Mangekyou Deactivated!")
  30. game:GetService("Chat"):Chat(Player.Character.Head, "Sharingan Release!")
  31. script.Draining.Value = false
  32. SharinganActivated = false
  33. script.Parent.Parent.Character.Humanoid.WalkSpeed = 16
  34. if script.Parent.Parent.Backpack:findFirstChild("Tsukuyomi")
  35. then script.Parent.Parent.Backpack.Tsukuyomi:Destroy()
  36. end
  37. if script.Parent.Parent.Backpack:findFirstChild("OrangeSusanoo")
  38. then script.Parent.Parent.Backpack.OrangeSusanoo:Destroy()
  39. end
  40. if script.Parent.Parent.Character:findFirstChild("Chest")
  41. then script.Parent.Parent.Character.Chest:Destroy()
  42. end
  43. if script.Parent.Parent.Backpack:findFirstChild("Amaterasu")
  44. then script.Parent.Parent.Backpack.Amaterasu:Destroy()
  45. end
  46. if script.Parent.Parent.Character.Head:findFirstChild("Blood")
  47. then script.Parent.Parent.Character.Head.Blood:Destroy()
  48. end
  49. if script.Parent.Parent.Character.Head:findFirstChild("EMS")
  50. then script.Parent.Parent.Character.Head.EMS:Destroy()
  51. script.Parent.Parent.Character.Head.face.Face = "Front"
  52. end
  53. end
  54. end
  55. end
  56. end
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement