Advertisement
iiJosephCats205

The Brand New Power Script

Jan 12th, 2019
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.62 KB | None | 0 0
  1. -------------------------------------------------
  2. ----------Power Script By iiJoeCats--------------
  3. -------------------------------------------------
  4.  
  5.  
  6. local plr = owner
  7. local char = plr.Character
  8. if char:FindFirstChild("Animate") then
  9.     char.Animate:Destroy()
  10. end
  11. local hum = char:FindFirstChild("Humanoid")
  12. local torso = char.Torso
  13. local head = char.Head
  14. local using = false
  15.  
  16. local billGUI = Instance.new("BillboardGui", head)
  17. billGUI.Adornee = wow
  18. billGUI.Name = "Name"
  19. billGUI.Size = UDim2.new(2, 0, 1.2, 0)
  20. billGUI.StudsOffset = Vector3.new(-5, 3, 0)
  21.  
  22. local TLabel = Instance.new("TextLabel", billGUI)
  23. TLabel.Size = UDim2.new(6, 0, 1, 0)
  24. TLabel.FontSize = "Size8"
  25. TLabel.TextScaled = true
  26. TLabel.TextTransparency = 0
  27. TLabel.BackgroundTransparency = 1
  28. TLabel.TextTransparency = 0
  29. TLabel.TextStrokeTransparency = 0
  30. TLabel.Font = Enum.Font.SciFi
  31. TLabel.TextStrokeColor3 = Color3.new(0,0,0)
  32. TLabel.TextColor3 = BrickColor.Random().Color
  33. TLabel.Text = "Guess whos back"
  34.  
  35. local music = Instance.new("Sound")
  36. music.Parent = torso
  37. music.TimePosition = 0
  38. music.Volume = 2
  39. music.PlaybackSpeed = 1.025
  40. music.SoundId = "rbxassetid://929330882"
  41.  
  42. wait(3)
  43. TLabel.Text = "MY POWER SCRIPT"
  44. local introSphere = Instance.new("Part",torso)
  45. introSphere.Shape = "Ball"
  46. introSphere.Material = Enum.Material.Glass
  47. introSphere.CFrame = torso.CFrame
  48. introSphere.Anchored = true
  49. introSphere.Transparency = 0.4
  50. introSphere.Color = TLabel.TextColor3
  51. introSphere.CanCollide = false
  52. for i = 1,100 do
  53.     wait()
  54.     introSphere.Transparency = introSphere.Transparency + 0.01
  55.     introSphere.Size = introSphere.Size + Vector3.new(2,2,2)
  56. end
  57. introSphere:Destroy()
  58. TLabel.Text = "Script by iiJoeCats"
  59. wait(1)
  60. TLabel.Text = "yes"
  61. wait(0.2)
  62. TLabel.Text = plr.Name.." feels the power!"
  63.  
  64. local mouse = {Hit = CFrame.new(0,0,0)}
  65. local remote = Instance.new("RemoteEvent")
  66. remote.Name = "UserInputStuff"
  67. remote.Parent = NLS([==[
  68.     local plr = game:GetService("Players").LocalPlayer
  69.     local mouse = plr:GetMouse()
  70.     local char = plr.Character
  71.     local hum = char:FindFirstChildOfClass("Humanoid")
  72.    
  73.     game:GetService("UserInputService").InputBegan:Connect(function(input, isTyping)
  74.         if isTyping == false and input.UserInputType == Enum.UserInputType.Keyboard then
  75.             script:WaitForChild("UserInputStuff"):FireServer("UserInputService", input.KeyCode)
  76.         end
  77.     end)
  78.    
  79.     while game:GetService("RunService").RenderStepped:Wait() do
  80.         if script:FindFirstChild("UserInputStuff") then
  81.             script.UserInputStuff:FireServer("MouseInfo", mouse.Hit)
  82.         end
  83.     end
  84. ]==],char)
  85.    
  86. remote.OnServerEvent:Connect(function(player, Type, input)
  87.     if player == plr then
  88.         if Type == "MouseInfo" then
  89.             mouse.Hit = input
  90.         end
  91.         if Type == "UserInputService" then
  92.             if using == false then
  93.                 if input == Enum.KeyCode.Q then
  94.                     local testPlacement = Instance.new("Part",char)
  95.                     testPlacement.Size = Vector3.new(6,1,6)
  96.                     testPlacement.BrickColor = BrickColor.new("Bright yellow")
  97.                     testPlacement.Material = Enum.Material.Neon
  98.                     testPlacement.Position = mouse.Hit.Position
  99.                     testPlacement.Anchored = true
  100.                     wait(3)
  101.                     for i = 1,130 do
  102.                         wait()
  103.                         testPlacement.Size = testPlacement.Size + Vector3.new(0,3,0)
  104.                         testPlacement.Transparency = testPlacement.Transparency + 0.01
  105.                         testPlacement.Touched:Connect(function(hit)
  106.                             local human = hit.Parent:FindFirstChild("Humanoid")
  107.                             local dmg = 2.4
  108.                             if human ~= nil then
  109.                                 repeat
  110.                                     wait()
  111.                                     human.Health = human.Health - dmg
  112.                                 until human.Health <= 40   
  113.                             end
  114.                         end)
  115.                     end
  116.                     testPlacement:Destroy()
  117.                 end
  118.             end
  119.         end
  120.     end
  121. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement