1
Roblox Tutorial - Script Builder Games on 4/4/2009, 8:03 pm
My Next Tutorial is: ""IF" the world of condition" and after "Tool's Experts" reality nice tutorials '-'
You like games of Script Builder but do not have many scripts?
Here is your place!
You like games of Script Builder but you do not know nothing about the game?
Here is your place!
You do not like Script Builder Games, but this will make you LOVE the game!
1. How the Script Builder work.
2. What are the key commands.
3. How to write a script in Script Builder Game.
4. How to not make the game slow down
5. Some Script Builder Games
6. Some Scripts to use
______________________________
1. How the Script Builder Work.
When you say Create/anyhere, he put in a script that create a script named anyhere, when you edit/anyhere he start adding anything that you talk to the script before you say exit/
nothing special '-' but online is cool ^^
The key commands are:
Create/(scriptnamehere) you can't create two script with same name
Edit/(scriptnamehere) you can't edit if you not create
Exit/ exit the editor (no need the script name)
Run/(scriptnamehere) makes you script run one time (if you have a while do true in the start and end in the end, will loop every 0.000001 sec (lag))
the others commands is in the description
possibly some script builders of the stone was change the commands
as "create/name" to "script/name" this can be seen in the description of the game also
This is easy: First join in the game and say "create/script1"
now write "edit/script1"
write the code:
(copy and paste)
after press enter, write "exit/"
and write "run/script1" and he start:
game.Workspace.Base = find a brick called Base
= Color3.new(math.random(), math.random(), math.random() ) = give random color to the Base
quite easy, no?
you can say "run/script1" again to random again and again etc...
It's not hard, only delete yours script when you know that never will use again
and when you use "while true do" in the start put "wait(1)" min ...
nothing more ;/
1. Script Builder™ v3.00.236 (the best) - by Anaminus - Click Here to Go
2. Script Builder V1.62 - by Bannana97 - Click Here to Go
3. ~~~NZ's Script Builder~~~ - NintendoZACHERY - Click Here to Go - DANGER: OLD VERSION: Commands Changed (script/namehere = create script namehere)
Function = Script
Removing Admin Commands (created by)
Description: This removes admin commands, prevening you to get banned. (you can just change game.Players.Name >:][/b]
You like games of Script Builder but do not have many scripts?
Here is your place!
You like games of Script Builder but you do not know nothing about the game?
Here is your place!
You do not like Script Builder Games, but this will make you LOVE the game!
1. How the Script Builder work.
2. What are the key commands.
3. How to write a script in Script Builder Game.
4. How to not make the game slow down
5. Some Script Builder Games
6. Some Scripts to use
______________________________
1. How the Script Builder Work.
When you say Create/anyhere, he put in a script that create a script named anyhere, when you edit/anyhere he start adding anything that you talk to the script before you say exit/
nothing special '-' but online is cool ^^
______________________________
2. What are the key commands.
2. What are the key commands.
The key commands are:
Create/(scriptnamehere) you can't create two script with same name
Edit/(scriptnamehere) you can't edit if you not create
Exit/ exit the editor (no need the script name)
Run/(scriptnamehere) makes you script run one time (if you have a while do true in the start and end in the end, will loop every 0.000001 sec (lag))
the others commands is in the description
possibly some script builders of the stone was change the commands
as "create/name" to "script/name" this can be seen in the description of the game also
______________________________
3. How to write a script in Script Builder Game.
3. How to write a script in Script Builder Game.
This is easy: First join in the game and say "create/script1"
now write "edit/script1"
write the code:
- Code:
game.Workspace.Base = Color3.new(math.random(), math.random(), math.random() )
(copy and paste)
after press enter, write "exit/"
and write "run/script1" and he start:
game.Workspace.Base = find a brick called Base
= Color3.new(math.random(), math.random(), math.random() ) = give random color to the Base
quite easy, no?
you can say "run/script1" again to random again and again etc...
______________________________
4. How to not make the game slow down.
4. How to not make the game slow down.
It's not hard, only delete yours script when you know that never will use again
and when you use "while true do" in the start put "wait(1)" min ...
nothing more ;/
______________________________
5. Some Script Builder Games.
5. Some Script Builder Games.
1. Script Builder™ v3.00.236 (the best) - by Anaminus - Click Here to Go
2. Script Builder V1.62 - by Bannana97 - Click Here to Go
3. ~~~NZ's Script Builder~~~ - NintendoZACHERY - Click Here to Go - DANGER: OLD VERSION: Commands Changed (script/namehere = create script namehere)
______________________________
6. Some Scripts to use.
6. Some Scripts to use.
Function = Script
Script 1
Create a Brick
Description: A simple brick '-'
Create a Brick
Description: A simple brick '-'
- Code:
local brick = Instance.new("Part")
brick.Parent = game.Workspace
brick.Name = "Brick1"
brick.Size = Vector3.new(10,10,10) -- the size of the brick
brick.Position = Vector3.new(0,3,0) -- the position of the brick
brick.Anchored = true --|false = fall|true = never fall|--
brick.CanCollide = true --can collide?
brick.Locked = false
brick.Shape = "Block" -- Ball,Block or Cylinder
Script 2
Create a Floating Text
Description: A bit of logic
Create a Floating Text
Description: A bit of logic
- Code:
local text = "Floating Text Here" -- put here what you like to put in the text
local mod = Instance.new("Model")
mod.Parent = game.Workspace
mod.Name = text -- text = floating text
local head = Instance.new("Part")
head.Parent = mod -- do not touch here '-'
head.Name = "Head" -- do not change it
head.Size = Vector3.new(5,4,5) -- the size of the brick
head.Position = Vector3.new(0,3,0) -- the position of the brick that have the floating text
head.Anchored = true -- false = fall - - - - true = never fall
local huma = Instance.new("Humanoid")
huma.Parent = mod
Script 3
Kill Every Player (you too)
Description: ONE LINE! Xd
Kill Every Player (you too)
Description: ONE LINE! Xd
- Code:
game.Workspace:BreakJoints()
Script 4
Full ForceField
Description: Put you name in the Script
Full ForceField
Description: Put you name in the Script
- Code:
local f=new.Instance("ForceField") --Makes a forcefield
f.Parent=game.Workspace.YOUR NAME HERE.Torso
f.Parent=game.Workspace.YOUR NAME HERE.Head
f.Parent=game.Workspace.YOUR NAME HERE["Left Arm"]
f.Parent=game.Workspace.YOUR NAME HERE["Right Arm"]
f.Parent=game.Workspace.YOUR NAME HERE["Left Leg"]
f.Parent=game.Workspace.YOUR NAME HERE["Right Leg"]
Script 5
Message to Players
Description: Nothing to declare...
Message to Players
Description: Nothing to declare...
- Code:
message = "PUT HERE YOUR MESSAGE"
m=new.Instance("Message")
m.Parent= game.Workspace
m.Text= message
wait(10) -- 10 sec
m:Remove()
Script 5
Removing Admin Commands (created by)
Description: This removes admin commands, prevening you to get banned. (you can just change game.Players.Name >:][/b]
- Code:
wait (3)
f = Instance.new("Message")
f.Text = "System Diagnosis Intializing..."
f.Parent = game.Workspace
wait (3)
f.Text = "System Diagnosis Scanning..."
wait (1)
f.Text = "||........." wait (.05) f.Text = ".||........" wait (.05)
f.Text = "..||......." wait (.05) f.Text = "...||......" wait (.05)
f.Text = "....||....." wait (.05) f.Text = ".....||...." wait (.05)
f.Text = "......||..." wait (.05) f.Text = ".......||.." wait (.05)
f.Text = "........||." wait (.05) f.Text = ".........||" wait (.05)
f.Text = "........||." wait (.05) f.Text = ".......||.." wait (.05)
f.Text = "......||..." Wait (.05) f.Text = ".....||...." wait (.05)
f.Text = "....||....." wait (.05) f.Text = "...||......" wait (.05)
f.Text = "..||......." wait (.05) f.Text = ".||........" wait (.05)
f.Text = "||........."
wait (1)
if game:FindFirstChild("Workspace") ~= nil and game.Workspace:FindFirstChild("Admin Commands") ~= nil then
f.Text = "Error found in : Admin Commands - Error Details: Abusive script"
wait (3) game.Workspace:FindFirstChild("Admin Commands"):Remove() end
f.Text = "Removing Admin Commands"
wait (.3)
f:Remove()
Last edited by Gravyerd on 8/22/2010, 8:52 pm; edited 4 times in total












