generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Scripting Helpers
Home Search
 

Re: Need a tester

Previous Thread :: Next Thread 
xXxBOiL3DxXx is not online. xXxBOiL3DxXx
Joined: 08 Sep 2012
Total Posts: 110
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 is not online. 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 is not online. 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
xXxBOiL3DxXx is not online. xXxBOiL3DxXx
Joined: 08 Sep 2012
Total Posts: 110
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 is not online. Stefan631
Joined: 23 Dec 2010
Total Posts: 1350
30 Jun 2014 06:29 PM
fm
Report Abuse
xXxBOiL3DxXx is not online. xXxBOiL3DxXx
Joined: 08 Sep 2012
Total Posts: 110
30 Jun 2014 06:36 PM
?
Report Abuse
Casualist is not online. 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
xXxBOiL3DxXx is not online. xXxBOiL3DxXx
Joined: 08 Sep 2012
Total Posts: 110
04 Jul 2014 06:12 PM
I wonder how many people stole the code.
Report Abuse
Frostglacier is not online. Frostglacier
Joined: 28 Oct 2010
Total Posts: 4177
04 Jul 2014 07:10 PM
Stealing the code is useless. There are too many different elements referred to in the code.
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting Helpers
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image