Advertisement
StaphanoRulez

Vanguard

Jun 21st, 2016
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.51 KB | None | 0 0
  1. repeat Wait()until Game.Players.LocalPlayer ~= nil;Player = Game.Players.LocalPlayer Tool = script.Parent if not script.Parent:IsA("Tool")then Tool = Instance.new("Tool",Player.Backpack)script.Parent = Tool end
  2. Tool.Name = "Select me."
  3. Tool.ToolTip = "I know it seems sketchy, just do it k."
  4. local Mouse = Tool.Equipped:wait()
  5. local Player = Game.Players.LocalPlayer
  6. Character,PlayerGui,Power = Player.Character,Player.PlayerGui,0
  7. RA,LA,RL,LL,H,T = Character["Right Arm"],Character["Left Arm"],Character["Right Leg"],Character["Left Leg"],Character.Head,Character.Torso
  8. RS,LS,RH,LH,N = T["Right Shoulder"],T["Left Shoulder"],T["Right Hip"],T["Left Hip"],T.Neck
  9. Settings,Pr0mMode,ArielMode,InternalMode,AmazingMode = {Colors = {BrickColor.new("Really black"),BrickColor.new("New Yeller")};ExplosionColors = {BrickColor.new("Really black"),BrickColor.new("New Yeller"),BrickColor.new("Really red"),BrickColor.new("Institutional white")}},Player.Name == "kash5",Player.Name == "paul072" or Player.Name == "KillBecca62",Player.Name == "InternalRecursion" or Player.Name == "RecursionAltInternal",Player.Name == "heartstar18"
  10. StanceGyro = Instance.new("BodyGyro",T)
  11. StanceGyro.maxTorque = Vector3.new(5000000000,5000000000,5000000000)*500000000000000
  12. StanceGyro.P = 15000
  13. StanceGyro.D = 750
  14. StanceGyro.Name = "StanceGyro"
  15. Power = math.huge
  16. local Cam = Workspace.CurrentCamera
  17. local function Kill(Obj)Obj.Parent:BreakJoints()end
  18. local function TweenColor3x(Object,PropertyName,Start,End,Time,Async,StepCallback,Callback)
  19. Object[PropertyName] = Start
  20. local r,r2,g,g2,b,b2 = Start.r,End.r,Start.g,End.g,Start.b,End.b
  21. local r3,g3,b3 = r,g,b
  22. local Time = Time or 3
  23. local function f()
  24. for i = 1,Time *30 do
  25. r3 = r3 +(r2 -r)/(Time *30)
  26. g3 = g3 +(g2 -g)/(Time *30)
  27. b3 = b3 +(b2 -b)/(Time *30)
  28. Object[PropertyName] = Color3.new(r3,g3,b3)
  29. Spawn(function()StepCallback(i,Time *30)end)
  30. Wait()
  31. end
  32. return CallBack and Callback()
  33. end if Async then
  34. f = coroutine.wrap(f)
  35. end return f()end
  36. function Effect2(part,x1,y1,z1,x2,y2,z2,color,ref)
  37. if part:IsDescendantOf(Workspace)then
  38. local S = Instance.new("Part",Character)
  39. S.FormFactor = 0
  40. S.Size = Vector3.new(1,1,1)
  41. S.BrickColor = color
  42. S.Reflectance = ref or 0
  43. S.TopSurface = 0
  44. S.BottomSurface = 0
  45. S.Transparency = 0.5
  46. S.Anchored = true
  47. S.CanCollide = false
  48. S.CFrame = part.CFrame * CFrame.new(x2,y2,z2)* CFrame.fromEulerAnglesXYZ(math.random(-50,50),math.random(-50,50),math.random(-50,50))
  49. local msh2 = Instance.new("BlockMesh",S)
  50. msh2.Scale = Vector3.new(x1,y1,z1)
  51. coroutine.wrap(function()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement