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: how to script

Previous Thread :: Next Thread 
imawesome329 is not online. imawesome329
Joined: 02 Aug 2013
Total Posts: 23
11 Feb 2014 05:42 PM
this is where we give commands if you need help scripting
Report Abuse
imawesome329 is not online. imawesome329
Joined: 02 Aug 2013
Total Posts: 23
17 Feb 2014 01:10 PM
function

game.player.username.humundo = 0
Report Abuse
TheLastAlly is not online. TheLastAlly
Joined: 01 Sep 2013
Total Posts: 90
17 Feb 2014 01:11 PM
That is horrible, thats not even a correct script.
Report Abuse
Vyxium is not online. Vyxium
Joined: 31 Aug 2010
Total Posts: 1020
17 Feb 2014 01:18 PM
lolol
Report Abuse
Stormtrooper12556 is not online. Stormtrooper12556
Joined: 12 May 2011
Total Posts: 378
17 Feb 2014 01:45 PM
I really learned alot after this lesson so let me see what I learned...

if
imaawesome329.ScriptingKnowledge = false
then
This.Forum = Pointless

Report Abuse
imawesome329 is not online. imawesome329
Joined: 02 Aug 2013
Total Posts: 23
14 Mar 2014 01:36 PM
ok I finally learned how to script

print("VIP Door Script loaded")

-- list of account names allowed to go through the door.
permission = {"imawesome329","Koolaidisgood","portalmakerboii5"}--Put your friends name's here. You can add more.

function checkOkToLetIn(name)
for i = 1,#permission do
-- convert strings to all upper case, otherwise we will let in,
-- "conrad105," and, "builderman," but not, "blast1."
-- Why? Because, "blast1," is how it is spelled in the permissions.
if (string.upper(name) == string.upper(permission[i])) then return true end
end
return false
end

local Door = script.Parent

function onTouched(hit)
print("Door Hit")
local human = hit.Parent:findFirstChild("Humanoid")
if (human ~= nil ) then
-- a human has touched this door!
print("Human touched door")
-- test the human's name against the permission list
if (checkOkToLetIn(human.Parent.Name)) then
print("Human passed test")
Door.Transparency = 0.7
Door.CanCollide = false
wait(3) -- this is how long the door is open
Door.CanCollide = true
Door.Transparency = 0
else human.Health= 0 -- delete this line of you want a non-killing VIP door
end
end
end

script.Parent.Touched:connect(onTouched)

Report Abuse
tangyboxhead is not online. tangyboxhead
Joined: 23 Oct 2011
Total Posts: 9437
14 Mar 2014 01:37 PM
"ok I finally learned how to script "
>posts a vip door clearly now his own.

Sorry dude...
Report Abuse
Nhelp is not online. Nhelp
Joined: 05 Aug 2011
Total Posts: 11557
14 Mar 2014 01:39 PM
i died at this post
Report Abuse
Exterity is not online. Exterity
Joined: 19 Dec 2009
Total Posts: 4504
14 Mar 2014 01:40 PM
[ Content Deleted ]
Report Abuse
nivleMmIiH is not online. nivleMmIiH
Joined: 17 Jan 2014
Total Posts: 78
14 Mar 2014 01:40 PM
me too can someone revive me
oh wait
this is real life
Report Abuse
UnStunned is not online. UnStunned
Joined: 14 Jun 2012
Total Posts: 122
14 Mar 2014 01:47 PM
Can't stop trolling xD
Report Abuse
Xulp is not online. Xulp
Joined: 24 Apr 2012
Total Posts: 451
14 Mar 2014 01:49 PM
Pasting an FM VIP door script isn't scripting, fool.
Report Abuse
EcIiptic is not online. EcIiptic
Joined: 12 Aug 2009
Total Posts: 13737
14 Mar 2014 01:49 PM
http://www.roblox.com/Solve-Anything-Script-item?id=149208044


Put this script into your workspace and it can solve anything, even your lack of knowledge about scripting.

Try it, it's free.

#Scripter
Report Abuse
UnStunned is not online. UnStunned
Joined: 14 Jun 2012
Total Posts: 122
14 Mar 2014 01:54 PM
No script can solve all problems.
Report Abuse
nivleMmIiH is not online. nivleMmIiH
Joined: 17 Jan 2014
Total Posts: 78
14 Mar 2014 02:00 PM
magic can though
Report Abuse
DrSoulless is not online. DrSoulless
Joined: 26 Feb 2014
Total Posts: 8
14 Mar 2014 02:20 PM
Attention anyone who knows how to script.
If you can create a SINGLE script that lets you do the following,

-Teleports all players to a random place (3 place spots)
-Randomly picked player get's a gear
-2 Randomly picked players get 300 Health and a gun for each
-Rounds that are 600s long
-Intermission 30s long

Everything must happen in rounds, and every time a new server it would begin with an intermission.
Report Abuse
nivleMmIiH is not online. nivleMmIiH
Joined: 17 Jan 2014
Total Posts: 78
14 Mar 2014 02:30 PM
That would be pretty easy DrSoul, but everyone has their own projects to work on.
Report Abuse
imawesome329 is not online. imawesome329
Joined: 02 Aug 2013
Total Posts: 23
14 Mar 2014 03:45 PM
if you died change your name in the players to your name sorry about that
Report Abuse
EcIiptic is not online. EcIiptic
Joined: 12 Aug 2009
Total Posts: 13737
14 Mar 2014 03:58 PM
what...


Can't even form a proper, logical sentence lol...

#Scripter
Report Abuse
UnStunned is not online. UnStunned
Joined: 14 Jun 2012
Total Posts: 122
15 Mar 2014 04:13 AM
Watch tutorials by ROBLOX administrators .
Report Abuse
vlekje513 is not online. vlekje513
Joined: 28 Dec 2010
Total Posts: 9057
15 Mar 2014 04:15 AM
or Stickmasterluke's.
or Wiki
or ask help here.
Report Abuse
imawesome329 is not online. imawesome329
Joined: 02 Aug 2013
Total Posts: 23
09 Apr 2014 11:45 AM
local enabled = true
Player = script.Parent.Parent
--Player:WaitForDataReady()
mouse = Player:GetMouse()
run = game:GetService("RunService")
function onKeyDown(key)
if not enabled then return end
enabled = false
Key = key:lower()
if key == "z" then
RightShoulder = Player.Character.Torso["Right Shoulder"]
LeftShoulder = Player.Character.Torso["Left Shoulder"]
Run = game:GetService("RunService")
for i = 1, 2 do
for i = 1, 12 do
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0, -0.16)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, 0, 0.16)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, 0.1, 0)
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, -0.1, 0)
Run.Stepped:wait(0.01)
end
for i = 1, 12 do
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0.1, 0)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, -0.1, 0)
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0, 0.16)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, 0, -0.16)
Run.Stepped:wait(0.005)
end
end
for i = 1, 12 do
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0, -0.16)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, 0, 0.16)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, 0.1, 0)
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, -0.1, 0)
Run.Stepped:wait(0.005)
end
game:GetService("Chat"):Chat(Player.Character.Head, "Fire Style: Fireball Jutsu")
x = Instance.new("Part")
x.BrickColor = BrickColor.new("Bright red")
x.Size = Vector3.new(10, 10, 10)
x.TopSurface = "Smooth"
x.BottomSurface = "Smooth"
x.Shape = "Ball"
x.Name = Player.Name
x.CanCollide = false
x.Transparency = 0.7
fd = script.Firedamage:clone()
fd.Parent = x
y = Instance.new("BodyVelocity")
y.maxForce = Vector3.new(math.huge, math.huge, math.huge)
y.velocity = Player.Character.Torso.CFrame.lookVector*80
x.Parent = Workspace
y.Parent = x
f = Instance.new("Fire", x)
f.Size = 15
f.Heat = 0
x.CFrame = Player.Character.Torso.CFrame*CFrame.new(0, 0, -12)
fd.Disabled = false
game.Debris:AddItem(x, 6)
wait(0.25)
for i = 1, 12 do
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0.1, 0)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, -0.1, 0)
LeftShoulder.C0 = LeftShoulder.C0 *CFrame.Angles(0, 0, 0.16)
RightShoulder.C0 = RightShoulder.C0 *CFrame.Angles(0, 0, -0.16)
Run.Stepped:wait(0.01)
end
end
wait(2)
enabled = true
end

mouse.KeyDown:connect(onKeyDown)

kk that's fireball with animation now firedamage



function onDamage(Part)
if Part.Parent:FindFirstChild("Humanoid") ~= nil and Part.Parent.Name ~= "script.Parent.Name" then
script.Disabled = true
f = Instance.new("Fire", Part)
for i = 1,25 do
f.Size = f.Size +0.25
Part.Parent.Humanoid.Health = Part.Parent.Humanoid.Health -1
wait(0.05)
end
Part.Parent.Humanoid.Sit = true
f:remove()
script.Parent:remove()
end
wait(0.025)
end

script.Parent.Touched:connect(onDamage)






Report Abuse
meSmashsta is not online. meSmashsta
Joined: 31 Jan 2013
Total Posts: 1002
09 Apr 2014 11:52 AM
lmfao x)) that fireball script is from a youtube tutorial LOLOLOL
Report Abuse
nivleMmIiH is not online. nivleMmIiH
Joined: 17 Jan 2014
Total Posts: 78
10 Sep 2014 10:16 AM
bump
Report Abuse
DevQuinn is not online. DevQuinn
Joined: 02 Jul 2013
Total Posts: 79
10 Sep 2014 10:23 AM
What even... xD
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