|
| 30 Jun 2014 05:44 PM |
| Need a tester that is able to type fast, and is over the age of 10 |
|
|
| Report Abuse |
|
|
Casualist
|
  |
| Joined: 26 Jun 2014 |
| Total Posts: 4443 |
|
|
| 30 Jun 2014 05:46 PM |
| This is a curiously phrased request, ok I'll bite. |
|
|
| Report Abuse |
|
|
robomax11
|
  |
| Joined: 07 Jul 2011 |
| Total Posts: 6828 |
|
|
| 30 Jun 2014 06:07 PM |
hate to break it to you buddy. most SH'ers are both a fast typer and over the age of ten.
siggys r stupid |
|
|
| Report Abuse |
|
|
|
| 30 Jun 2014 06:26 PM |
debounce = false mouse = script.Parent.Parent:GetMouse()
function Ball(key) if key == "f" then player = script.Parent.Parent if player.PlayerGui.mana.TextButton.Size.X.Scale >= 0.2 then player.PlayerGui.mana.TextButton.Size = player.PlayerGui.mana.TextButton.Size - UDim2.new(0.2,0,0,0) game:GetService("Chat"):Chat(script.Parent.Parent.Character.Head, "Intermediate Spell, Ink Tsunami!") m = script.Parent.Parent.Character.Torso.CFrame.lookVector local x = Instance.new("Part",workspace) x.BrickColor = BrickColor.new("Black") x.TopSurface = "Smooth" x.BottomSurface = "Smooth" x.Name = "Ink" x.CFrame = script.Parent.Parent.Character.Torso.CFrame*CFrame.new(0,0,-15) x.Transparency = .7 x.CanCollide = false x.Material = "Granite" x.Size = Vector3.new(20,20,20) y = Instance.new("BodyVelocity", x) y.maxForce = Vector3.new(math.huge,math.huge,math.huge) y.velocity = script.Parent.Parent.Character.Head.CFrame.lookVector*400 x.Touched:connect(function(Part) if Part.Parent:FindFirstChild("Humanoid") ~= nil and debounce == false then if Part.Parent.Name ~= script.Parent.Parent.Name then debounce = true game.Debris:AddItem(l,.2) Part.Parent.Humanoid.Sit = true d = Instance.new("BodyVelocity", Part.Parent.Torso) d.maxForce = Vector3.new(math.huge,math.huge,math.huge) d.velocity = m*200 a = game.Players:GetPlayerFromCharacter(Part.Parent) a:WaitForChild("PlayerGui") print("d") a.PlayerGui.Eye.TextLabel.Visible = true game.Debris:AddItem(d,1) Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health - 20 wait(7) a.PlayerGui.Eye.TextLabel.Visible = false wait(1) debounce = false else print("no Humanoid") end end end) game.Debris:AddItem(x,3) end end end
mouse.KeyDown:connect(Ball) |
|
|
| Report Abuse |
|
|
Stefan631
|
  |
| Joined: 23 Dec 2010 |
| Total Posts: 1350 |
|
| |
|
| |
|
Casualist
|
  |
| Joined: 26 Jun 2014 |
| Total Posts: 4443 |
|
|
| 30 Jun 2014 07:10 PM |
local debounce = false local player = game:GetService"Players".LocalPlayer local mouse = player:GetMouse() local pGUI = player:WaitForChild"PlayerGui" local mana = pGUI:WaitForChild"mana" local manaBar = mana:WaitForChild"TextButton" while not player.Character do wait() end local character = player.Character
function Ball(key) if key == "f" and manaBar.Size.X.Scale >= 0.2 then manaBar.Size = manaBar.Size - UDim2.new(0.2,0,0,0) game:GetService("Chat"):Chat(character.Head, "Intermediate Spell, Ink Tsunami!") local m = character.Torso.CFrame.lookVector local x = Instance.new("Part",Workspace) x.BrickColor = BrickColor.new("Black") x.TopSurface = "Smooth" x.BottomSurface = "Smooth" x.Name = "Ink" x.Size = Vector3.new(20,20,20) -- change size before CFrame x.CFrame = character.Torso.CFrame*CFrame.new(0,0,-15) x.Transparency = .7 x.CanCollide = false x.Material = "Granite" local y = Instance.new("BodyVelocity", x) y.maxForce = Vector3.new(math.huge,math.huge,math.huge) y.velocity = character.Head.CFrame.lookVector*400 x.Touched:connect(function(Part) if Part.Parent and Part.Parent:FindFirstChild("Humanoid") and not debounce and game:GetService"Players":GetPlayerFromCharacter(Part.Parent) then if not Part.Parent:FindFirstChild"Torso" then return end debounce = true game.Debris:AddItem(l,.2) -- what's l? Part.Parent.Humanoid.Sit = true local d = Instance.new("BodyVelocity", Part.Parent.Torso) d.maxForce = Vector3.new(math.huge,math.huge,math.huge) d.velocity = m*200 game.Debris:AddItem(d,1) local a = game.Players:GetPlayerFromCharacter(Part.Parent) print("Starting waitfors") a:WaitForChild("PlayerGui"):WaitForChild("Eye"):WaitForChild("TextLabel") print"elements found" a.PlayerGui.Eye.TextLabel.Visible = true Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health - 20 wait(7) a.PlayerGui.Eye.TextLabel.Visible = false wait(1) debounce = false else print("Doesnt fulfill conditions") end end) game.Debris:AddItem(x,3) end end
mouse.KeyDown:connect(Ball) |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2014 06:12 PM |
| I wonder how many people stole the code. |
|
|
| Report Abuse |
|
|
|
| 04 Jul 2014 07:10 PM |
| Stealing the code is useless. There are too many different elements referred to in the code. |
|
|
| Report Abuse |
|
|