Number one post

Wednesday, June 27, 2012

Basic ROBLOX building

Using the three tools that i showed you is on of the many ways to make a popular game place that other robloxians will like. Or, you could stick to another tool/function, The c-frame tool, So basically it turns a selected brick at a specified angle instead of 90,180,270,360. Another Function that it has is that it can move brick into another, cool right. Well as we work on improving our places, The c-frame tool would come mainly around the editing stage of the game place.

Tuesday, June 19, 2012

Hints

Hints are messages that can be put at the top of your screen, and if you are an advanced scripter, you can use GUIs to show hints. below are two hint script versions.










Non-Repeating hint
local hint = Instance.new("hint")
Hint.Parent = game.workspace
Hint.Text = ("text") --replace text with what you want to appear as text
wait(10)--how long you want it to appear
Hint.Text = ("text")
wait(10)
Hint.Text = ("text")
wait(10)
end


Repeating hint
local hint = Instance.new("hint")
Hint.Parent = game.workspace
While True Do
Hint.Text = ("text")
wait(10)
Hint.Text = ("text")
wait(10)
Hint.Text = ("text")
wait(10)
end

Monday, June 18, 2012

New ROBLOX 3.0 bodies.

As we all know the new ROBLOX 3.0 bodies are coming soon,and they look sort of like legos,if you are a Long Time ROBLOX user like me,then you might now like/use them.

I'm not sure if they are NBC yet,ROBLOX only let me have a little information on this.

~ShoeBlocks

Me,ShoeBlocks.

I'm the Co-founder/CEO of RobloxStudion,my job on this website is to Moderate comments with Rude/Intollarable language,me and Icebender45,work to keep the site safe and very helpful.

~ShoeBlocks

Drag tool

The drag tool is another way to move bricks. The drag tool is less accurate then the move on axis tool, and in my opinion, is also harder to control and use. This is the tool that is located next to the move on axis tool and looks like your mouse.