Advertisement
00fjg

Untitled

Jul 17th, 2017
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. changeClothes = true
  2. powersActive = true
  3. nametag = "{|[ The Sacred ]|}"
  4. font = "Garamond"
  5. fontsize = "Size24"
  6. nametagOn = true
  7. musicOn = true
  8. lightOn = true
  9.  
  10.  
  11. wait(5)
  12. Me = game.Players.XxXexe5
  13. player = Me
  14. char = Me.Character
  15. chara = char
  16. larm = char["Left Arm"]
  17. rarm = char["Right Arm"]
  18. lleg = char["Left Leg"]
  19. rleg = char["Right Leg"]
  20. torso = char.Torso
  21. mouse = player:GetMouse()
  22. lght = game.Lighting
  23. lichtact = false
  24. moosicact = false
  25. gotsagofest = true
  26. chara.Humanoid.MaxHealth = math.huge
  27. chara.Humanoid.Health = math.huge
  28. char.Humanoid.WalkSpeed = 32
  29. char.Humanoid.JumpPower = 75
  30. rrer = BrickColor.new("New Yeller")
  31.  
  32. if nametagOn then
  33. local naeeym = Instance.new("BillboardGui",chara)
  34. naeeym.Size = UDim2.new(0,100,0,40)
  35. naeeym.StudsOffset = Vector3.new(0,2,0)
  36. naeeym.Adornee = chara.Head
  37. local tecks = Instance.new("TextLabel",naeeym)
  38. tecks.BackgroundTransparency = 1
  39. tecks.BorderSizePixel = 0
  40. tecks.Text = nametag
  41. tecks.Font = font
  42. tecks.FontSize = fontsize
  43. tecks.TextStrokeTransparency = 0
  44. tecks.TextColor3 = rrer.Color
  45. tecks.TextStrokeColor3 = Color3.new(255,255,255)
  46. tecks.Size = UDim2.new(1,0,0.5,0)
  47. end
  48. local licht = Instance.new("PointLight",chara.Torso)
  49. licht.Color = rrer.Color
  50. licht.Range = 30
  51. licht.Brightness = 1
  52. if lightOn then
  53. licht.Enabled = true
  54. else
  55. licht.Enabled = false
  56. end
  57.  
  58. ------------------------------- Player -------------------------------------------------------------------
  59. z = Instance.new("Sound",game.Workspace)
  60. z.Looped = true
  61. z.SoundId = "rbxassetid://306706432"
  62. z.Volume = 7.5
  63. if musicOn then
  64. z:Play()
  65. end
  66.  
  67. local IsFreeFalling = false
  68. local SpinPart = Instance.new('Part')
  69. SpinPart.Transparency = 1
  70. SpinPart.Size = Vector3.new(10,1,10)
  71. SpinPart.CanCollide = false
  72. SpinPart.FormFactor = 'Custom'
  73. local FX = Instance.new('ParticleEmitter',SpinPart)
  74. FX.Color,FX.Size,FX.Lifetime,FX.Rate,FX.Speed,FX.EmissionDirection,FX.Transparency,FX.LockedToPart = ColorSequence.new({ColorSequenceKeypoint.new(0, BrickColor.new("Gold").Color, 0), ColorSequenceKeypoint.new(1, BrickColor.new("Institutional white").Color, 0)}), NumberSequence.new(0.5), NumberRange.new(2.5,2.5), 50, NumberRange.new(10,10), "Bottom", NumberSequence.new({NumberSequenceKeypoint.new(0,1,0), NumberSequenceKeypoint.new(0.151,1,0),NumberSequenceKeypoint.new(0.25,0,0),NumberSequenceKeypoint.new(0.9,0,0),NumberSequenceKeypoint.new(0.975,1,0),NumberSequenceKeypoint.new(1,1,0)}), true
  75. do
  76. local tspin = Instance.new('BodyAngularVelocity')
  77. tspin.angularvelocity = Vector3.new(0,1,0)
  78. tspin.maxTorque =Vector3.new(math.huge,math.huge,math.huge)
  79. tspin.Parent = SpinPart
  80. end
  81. local SpinPos = Instance.new('BodyPosition')
  82. SpinPos.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  83. SpinPos.Parent = SpinPart
  84.  
  85. function Equipped()
  86. IsEquipped = true
  87. local MyTorso = char.Torso
  88. if MyTorso then
  89. spawn(function()
  90. local startTime = tick()
  91. SpinPart.CFrame = CFrame.new(MyTorso.CFrame.p+Vector3.new(0,20.8+(math.sin(tick())/3),0))
  92. SpinPart.Parent = MyTorso
  93. local fadeIn = true
  94. while IsEquipped do
  95.  
  96.  
  97. if not IsFreeFalling then
  98. SpinPos.position = MyTorso.CFrame.p+Vector3.new(0,20.8+(math.sin(tick())/3),0)
  99. end
  100. wait()
  101. end
  102. SpinPart.Parent = nil
  103.  
  104. end)
  105. end
  106. end
  107.  
  108.  
  109. wait(0.01)
  110. Equipped()
  111.  
  112. print("hi")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement