Roblox Studio Simulator Script

Home

hello this is my first site so i am an new so i am not good so do not laugh ant me ! :)
ok so this site is going to be a scripting site so i will teach you how to (script on roblox)
ok to script you need to lern the lua programing languing so robloxs progrmaing launge is lua 5.0 so look it up if you do not want to lern how to script here first i am going to show you how to script
1.go in roblox studio open in edit or build mode open up the command bar the command bar is for one line scripting but that is on becouse this script only uses one line on the script i want you to type in will kill yourself on roblox so this is what you have to type in on the command bar game.workspace.username.Head:Destroy of corse you name in not user name so were it says username type in your username and click enter if you hear a augh sound that means you did it becouse you chater is dead so you just made you first script you are now a basic scripter :) This script will make a radom block come out a the sky and crush stuff
while true do
wait(13)
local p = Instance.new('Part')
p.Parent = game.Workspace
p.Position = Vector3.new(0, 100, 0) --Change the numbers to change the local of the platform.
p.Size = Vector3.new(25, 25, 25) --Change the numbers to change the size from it.
p.BrickColor = BrickColor.new(1) --Look at the wiki and Scripting Help, the first option on the page and look for Pallete Colors to Numbers.
p.Locked = true
p.Anchored = false
wait(7)
p:remove()
end

run the top and bottom scripts and your base plate move 45 degrees

p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className 'Part' then
p[i].Name = 'Shane'
end
end
game.Workspace.Shane.CFrame = CFrame.fromEulerAnglesXYZ(1,0,0)

this script will clean up every thing on yuor base plate

p= game.Workspace:GetChildren()
for i= 1, #p do
if p[i].className 'Part' then
if p[i].Name ~= 'Shane' then
p[i]:remove()
end
end
end
this script will make a block invisabel just put the script in the block
c= game.Players:GetChildren()
for i= 1, #c do
p= c[i].Character:GetChildren()
for i= 1, #p do
if p[i].className 'Part' then
p[i].Transparency = 1
end
end
end
p= game.Players:GetChildren()
for i= 1, #p do
p[i].CharacterAppearance = 'http://www.roblox.com/Data/Get.ashx?hash=2531336bd505c2ce1f3eaaeef39d9f43;http://www.roblox.com/Data/AssetFetch.ashx?hash=0c957eae1dc937dcecc4f1874bddaac7&isapproved=true'
end
this script will make you a slave
i will do updates to the page for outher scripts soon so be sure to check back every once and a while.
Roblox Studio Simulator ScriptRoblox studio simulator script pastebin

Roblox Studio Simulator Script Pastebin

1.go in roblox studio open in edit or build mode open up the command bar the command bar is for one line scripting but that is on becouse this script only uses one line on the script i want you to type in will kill yourself on roblox so this is what you have to type in on the command bar game.workspace.username.Head:Destroy of corse you name in not user name so were it says username type in.