|
| 11 Feb 2014 05:42 PM |
| this is where we give commands if you need help scripting |
|
|
| Report Abuse |
|
|
|
| 17 Feb 2014 01:10 PM |
function
game.player.username.humundo = 0 |
|
|
| Report Abuse |
|
|
|
| 17 Feb 2014 01:11 PM |
| That is horrible, thats not even a correct script. |
|
|
| Report Abuse |
|
|
Vyxium
|
  |
| Joined: 31 Aug 2010 |
| Total Posts: 1020 |
|
| |
|
|
| 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 |
|
|
|
| 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 |
|
|
|
| 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
|
  |
| Joined: 05 Aug 2011 |
| Total Posts: 11557 |
|
| |
|
Exterity
|
  |
| Joined: 19 Dec 2009 |
| Total Posts: 4504 |
|
| |
|
|
| 14 Mar 2014 01:40 PM |
me too can someone revive me oh wait this is real life |
|
|
| Report Abuse |
|
|
UnStunned
|
  |
| Joined: 14 Jun 2012 |
| Total Posts: 122 |
|
| |
|
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
|
  |
| 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
|
  |
| Joined: 14 Jun 2012 |
| Total Posts: 122 |
|
|
| 14 Mar 2014 01:54 PM |
| No script can solve all problems. |
|
|
| Report Abuse |
|
|
| |
|
|
| 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 |
|
|
|
| 14 Mar 2014 02:30 PM |
| That would be pretty easy DrSoul, but everyone has their own projects to work on. |
|
|
| Report Abuse |
|
|
|
| 14 Mar 2014 03:45 PM |
| if you died change your name in the players to your name sorry about that |
|
|
| Report Abuse |
|
|
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
|
  |
| Joined: 14 Jun 2012 |
| Total Posts: 122 |
|
|
| 15 Mar 2014 04:13 AM |
Watch tutorials by ROBLOX administrators .
|
|
|
| Report Abuse |
|
|
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 |
|
|
|
| 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 |
|
|
|
| 09 Apr 2014 11:52 AM |
| lmfao x)) that fireball script is from a youtube tutorial LOLOLOL |
|
|
| Report Abuse |
|
|
| |
|
DevQuinn
|
  |
| Joined: 02 Jul 2013 |
| Total Posts: 79 |
|
| |
|