Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -------------------------------------------------
- ----------Power Script By iiJoeCats--------------
- -------------------------------------------------
- local plr = owner
- local char = plr.Character
- if char:FindFirstChild("Animate") then
- char.Animate:Destroy()
- end
- local hum = char:FindFirstChild("Humanoid")
- local torso = char.Torso
- local head = char.Head
- local using = false
- local billGUI = Instance.new("BillboardGui", head)
- billGUI.Adornee = wow
- billGUI.Name = "Name"
- billGUI.Size = UDim2.new(2, 0, 1.2, 0)
- billGUI.StudsOffset = Vector3.new(-5, 3, 0)
- local TLabel = Instance.new("TextLabel", billGUI)
- TLabel.Size = UDim2.new(6, 0, 1, 0)
- TLabel.FontSize = "Size8"
- TLabel.TextScaled = true
- TLabel.TextTransparency = 0
- TLabel.BackgroundTransparency = 1
- TLabel.TextTransparency = 0
- TLabel.TextStrokeTransparency = 0
- TLabel.Font = Enum.Font.SciFi
- TLabel.TextStrokeColor3 = Color3.new(0,0,0)
- TLabel.TextColor3 = BrickColor.Random().Color
- TLabel.Text = "Guess whos back"
- local music = Instance.new("Sound")
- music.Parent = torso
- music.TimePosition = 0
- music.Volume = 2
- music.PlaybackSpeed = 1.025
- music.SoundId = "rbxassetid://929330882"
- wait(3)
- TLabel.Text = "MY POWER SCRIPT"
- local introSphere = Instance.new("Part",torso)
- introSphere.Shape = "Ball"
- introSphere.Material = Enum.Material.Glass
- introSphere.CFrame = torso.CFrame
- introSphere.Anchored = true
- introSphere.Transparency = 0.4
- introSphere.Color = TLabel.TextColor3
- introSphere.CanCollide = false
- for i = 1,100 do
- wait()
- introSphere.Transparency = introSphere.Transparency + 0.01
- introSphere.Size = introSphere.Size + Vector3.new(2,2,2)
- end
- introSphere:Destroy()
- TLabel.Text = "Script by iiJoeCats"
- wait(1)
- TLabel.Text = "yes"
- wait(0.2)
- TLabel.Text = plr.Name.." feels the power!"
- local mouse = {Hit = CFrame.new(0,0,0)}
- local remote = Instance.new("RemoteEvent")
- remote.Name = "UserInputStuff"
- remote.Parent = NLS([==[
- local plr = game:GetService("Players").LocalPlayer
- local mouse = plr:GetMouse()
- local char = plr.Character
- local hum = char:FindFirstChildOfClass("Humanoid")
- game:GetService("UserInputService").InputBegan:Connect(function(input, isTyping)
- if isTyping == false and input.UserInputType == Enum.UserInputType.Keyboard then
- script:WaitForChild("UserInputStuff"):FireServer("UserInputService", input.KeyCode)
- end
- end)
- while game:GetService("RunService").RenderStepped:Wait() do
- if script:FindFirstChild("UserInputStuff") then
- script.UserInputStuff:FireServer("MouseInfo", mouse.Hit)
- end
- end
- ]==],char)
- remote.OnServerEvent:Connect(function(player, Type, input)
- if player == plr then
- if Type == "MouseInfo" then
- mouse.Hit = input
- end
- if Type == "UserInputService" then
- if using == false then
- if input == Enum.KeyCode.Q then
- local testPlacement = Instance.new("Part",char)
- testPlacement.Size = Vector3.new(6,1,6)
- testPlacement.BrickColor = BrickColor.new("Bright yellow")
- testPlacement.Material = Enum.Material.Neon
- testPlacement.Position = mouse.Hit.Position
- testPlacement.Anchored = true
- wait(3)
- for i = 1,130 do
- wait()
- testPlacement.Size = testPlacement.Size + Vector3.new(0,3,0)
- testPlacement.Transparency = testPlacement.Transparency + 0.01
- testPlacement.Touched:Connect(function(hit)
- local human = hit.Parent:FindFirstChild("Humanoid")
- local dmg = 2.4
- if human ~= nil then
- repeat
- wait()
- human.Health = human.Health - dmg
- until human.Health <= 40
- end
- end)
- end
- testPlacement:Destroy()
- end
- end
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement