Main public logs
From ROBLOX Wiki
Jump to navigationJump to search
Combined display of all available logs of ROBLOX Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 23:07, 10 December 2024 PRG talk contribs created page File:CatapultFire.png
- 23:07, 10 December 2024 PRG talk contribs uploaded File:CatapultFire.png
- 23:06, 10 December 2024 PRG talk contribs created page File:Catapult.png
- 23:06, 10 December 2024 PRG talk contribs uploaded File:Catapult.png
- 23:05, 10 December 2024 PRG talk contribs created page How To Increase and Decrease Vector3 Values (Created page with "{{CatUp|Tutorials}} __TOC__ == Introduction == This tutorial will show you how to add or subtract Vector3 values. This will be quite a benefit to your scripts, and will make them more popular if you have them. ==Adding Vector3 Values== 1) Insert a Vector3Value.<br> 2) Change the value of Vector3Value to 15, 15, 15. 3) Click on Vector3Value. 4) Insert a script. Make sure the script's parent is the Vector3Value. == Scripting == Once those parts are done, open the...")
- 15:43, 10 December 2024 PRG talk contribs created page How To Use BodyPosition (Created page with "==Introduction== In this tutorial, you should be in Roblox Studio. == Setup == First, make a small brick. I made mine 5x1x5. Next, select the brick you just made and click Insert->Object->Script. Now double-click the new script object. == Code == You should see the following: <pre> print("Hello World!") </pre> Delete that text, you won't need it. First, add this code. <pre> function onTouched(hit) </pre> This will detect when something touches it. <pre>local h...")
- 15:37, 10 December 2024 PRG talk contribs created page Building Trains (Created page with "{{CatUp|Tutorials}} {{ImproperArchive}} __TOC__ ==Introduction== This is the tutorial on how to build and script a working train. This will show you how you can get your own rapid transit rail system going. == Auto Start Trains == This section deals with making trains that will automatically start, travel to a destination, wait one minute, and return to their starting location. ==Building== ===Map=== First of all, before we can script we need something for the train t...")
- 15:36, 10 December 2024 PRG talk contribs created page Sounds (Redirected page to Music) Tag: New redirect
- 14:52, 10 December 2024 PRG talk contribs created page Crossroads (Created page with "{{CatUp|Roblox games}} {{ImproperArchive}} right '''Tagline:''' Battle your way through the secret hideout, storm the castle, invade the underground ruins, and capture the lookout tower. But be wary: there's always a showdown at The Crossroads. '''First Introduced:''' June 2006 '''Credits:''' <pre>Erik Cassel, Builderman, Telamon</pre> ==Summary== This map features some of the best fighting conditions around. For those that like open areas, the To...")
- 14:51, 10 December 2024 PRG talk contribs created page How to Make a Model Regenerate (Created page with "{{CatUp|Tutorials}} {{ScriptTutorial|Basic|Model}} __TOC__ == Introduction == Are you making a BrickBattle game and you want to have your scenery regenerate every once in a while? It is possible to do this with scripting. This tutorial will show you how to make a model regenerate every 5 minutes and display a message to this effect. == Make a model == The first step is to group the part of your level you want to regenerate into a model. Give your model a descri...")
- 14:50, 10 December 2024 PRG talk contribs created page One Way Shields (Created page with "{{CatUp|Tutorials}} __TOC__ == Introduction == One-Way shields are a door or shield that only lets people through one way. This can fix spawnkilling problems, for example, by placing weapons/weapon givers outside the spawnroom, and spawns inside and having this shield in-between. This makes it only possible to exit to the weapons, but not to reenter with weapons. Therefore, NO Spawnkilling. == Building == First, open up Roblox Studio. Create a w...")
- 14:50, 10 December 2024 PRG talk contribs created page File:Rob5.jpg
- 14:50, 10 December 2024 PRG talk contribs uploaded File:Rob5.jpg
- 14:50, 10 December 2024 PRG talk contribs created page File:Rob4.jpg
- 14:50, 10 December 2024 PRG talk contribs uploaded File:Rob4.jpg
- 14:50, 10 December 2024 PRG talk contribs created page File:Rob3.jpg
- 14:50, 10 December 2024 PRG talk contribs uploaded File:Rob3.jpg
- 14:50, 10 December 2024 PRG talk contribs created page File:Rob2.jpg
- 14:50, 10 December 2024 PRG talk contribs uploaded File:Rob2.jpg
- 14:50, 10 December 2024 PRG talk contribs created page File:Rob1.gif
- 14:50, 10 December 2024 PRG talk contribs uploaded File:Rob1.gif
- 14:49, 10 December 2024 PRG talk contribs created page Music (Created page with "{{CatUp|Tutorials}} {{ImproperArchive}} __TOC__ '''''Due to a recent update it seems that the browse feature no longer works with the sound ID. Not only that, it seems that sounds don't work at all anymore unless uploaded by an mod/admin.''''' '''Note that any audio files, music sound effects or otherwise are not supported by the Roblox Content Distrobution System fully. If not uploaded correctly or using a file from your computer, people visiting the server may not...")
- 14:49, 10 December 2024 PRG talk contribs created page File:Wiki3.JPG
- 14:49, 10 December 2024 PRG talk contribs uploaded File:Wiki3.JPG
- 14:49, 10 December 2024 PRG talk contribs created page File:Wiki2.JPG
- 14:49, 10 December 2024 PRG talk contribs uploaded File:Wiki2.JPG
- 14:48, 10 December 2024 PRG talk contribs created page Teleportation (Created page with "{{CatUp|Tutorials}} __TOC__ == Introduction == Teleportation, a script commonly requested, is a script that moves a player or model, as a whole, to another location, instantly. Teleportation is not high-level scripting -- just follow this simple tutorial to familiarize yourself. == How Does It Work? == CFrame records where you are. The teleporters change your CFrame, so that you can popup in another area. So, why can't it teleport all things? It has to have a wel...")
- 14:47, 10 December 2024 PRG talk contribs created page Introduction to Weapons (Created page with "{{CatUp|Tutorials}} {{CatUp|FAQ}} __TOC__ ==Introduction to Weapons== This tutorial explains to you the structure of weapons on Roblox and why they work. == How Tools Work == === Introduction === This section is a short description of how Tools work in the current version of Roblox. This may be handy to anyone who wants to write their own tools and doesn't care that any such tool may be short-lived due to the rapid development that is occurring in th...")
- 14:46, 10 December 2024 PRG talk contribs created page Making an onClicked script (Created page with "{{CatUp|Tutorials}} __TOC__ ==Introduction== This is a FAQ that will teach you how to make a simple onClicked script. This FAQ will also explain how to put it to use. ==What is onClicked?== Not long ago, Roblox released a new feature known as a Click Detector. If you put it inside a brick it will detect when it is clicked. == Instructions == 1) Insert a brick onto your map.<br> 2) Insert -> Object -> ClickDetector inside that same brick.<br> 3) Insert a script in...")
- 14:46, 10 December 2024 PRG talk contribs created page Intro to Scripting: Make an Invisibility Tool (Created page with "{{CatUp|Tutorials}} {{ScriptTutorial|Advanced|Lua}} __TOC__ ==Introduction== This tutorial is for people who wish to learn more about creation of tools, or who wish to add an invisibility tool to their map. It contains a basic invisibility script, without fading of characters. ==How the Tool Works== The invisibility tool is a HopperBin object so it will be able to be selected. It sets the ''Transparency'' values of all the player's RBX....")
- 14:45, 10 December 2024 PRG talk contribs created page How to add messages (Created page with "{{CatUp|Tutorials}} {{ImproperArchive}} == Introduction == This article will explain different ways of adding messages and hints to your place. == How to Insert a Message == While in Roblox Studio, :1. In the Explorer panel, select Workspace :2. Go to '''Insert''', then '''Object...''' ::{{Studio|Menu$Insert}} ::{{Studio|Menu$Insert$Object}} :3. In the window that pops up,...")
- 14:45, 10 December 2024 PRG talk contribs created page File:P01F15.png
- 14:45, 10 December 2024 PRG talk contribs uploaded File:P01F15.png
- 14:44, 10 December 2024 PRG talk contribs created page Intro to Scripting: Make a Healing Potion (Created page with "{{CatUp|Tutorials}} {{ScriptTutorial|Basic|Brick}} __TOC__ == Introduction == For now, this tutorial will show you how to make your brick heal your character when he touches it. #Go to the start from your desktop, and click on Roblox studio. #In Roblox Studio , go into "Edit mode". #Select the brick you want to modify. #Go to "Insert", then click object. Then type "Script" in the text box that comes up. #Double-click the script, then a window should pop up. #Remove all...")
- 14:43, 10 December 2024 PRG talk contribs created page Instance (Created page with "{{CatUp|Tutorials}} __TOC__ == Introduction == An "Instance" refers to an Instance of an Object, hence the name. Instance is a very useful piece of script. It can be used to create just about anything, and it is used often in Anaminus' Script Builder, and adding Messages via scripts in many places. It is different from: <pre> local o = game.Workspace.Object:Clone() o.Parent = game.Workspace </pre> Instance actually creates an Object from scratch,...")
- 14:43, 10 December 2024 PRG talk contribs created page How do I create a brick? (Created page with "{{CatUp|Tutorials}} __TOC__ == Object Creation via Script == It is time to learn how to create different objects via script. Instead of using "Insert > Object.. > Script", a script line can be used. Almost anything and everything can be created via scripts, even a whole new functioning script. === Adding New Objects (Instances) === Now, to add a new object, we need to use the term 'Instance.new'. This term creates a new instance. An instance is a longer...")
- 14:39, 10 December 2024 PRG talk contribs created page Script Creation Walkthrough (Created page with "__TOC__ == Introduction == This tutorial is for complete beginners. The idea is to create an elementary script from which you can build scripting knowledge. It assumes you know nothing about scripting. == What this tutorial will teach you == * What the print() function does * How to run a script == Setup == You will need to open Roblox Studio. Once you have done that, you will need to click "My ROBLOX", select your map, and click "Edit". At this point, you...")
- 14:38, 10 December 2024 PRG talk contribs created page File:Play.JPG
- 14:38, 10 December 2024 PRG talk contribs uploaded File:Play.JPG
- 14:38, 10 December 2024 PRG talk contribs created page File:Rewind.JPG
- 14:38, 10 December 2024 PRG talk contribs uploaded File:Rewind.JPG
- 14:38, 10 December 2024 PRG talk contribs created page File:Commandtoolbar.JPG
- 14:38, 10 December 2024 PRG talk contribs uploaded File:Commandtoolbar.JPG
- 14:38, 10 December 2024 PRG talk contribs created page Basic Scripting (Created page with "{{CatUp|Tutorials}} __TOC__ == Introduction == This article is an easy way to get started scripting. This will teach you how to script simple scripts that trigger when you touch them from the start. == Requirements == This tutorial is for people familiar with ROBLOX, and know Roblox Studio very well (a few weeks of experience). They should be familiar with [https://cirkl.wiki/index.php?title=Image:Explorerwindow.JPG Explorer], Properties, and...")
- 14:37, 10 December 2024 PRG talk contribs created page File:Outputwindow.JPG
- 14:37, 10 December 2024 PRG talk contribs uploaded File:Outputwindow.JPG
- 14:36, 10 December 2024 PRG talk contribs created page HopperBins (Created page with "{{CatUp|Tutorials}} __TOC__ ==What is a HopperBin?== HopperBins are considered old now. They were the first ways to make a weapon, a utility tool, or anything you could really think of. They are mainly used for getting input from the player, and doing something with that input. ==Special Events== The special events of a HopperBin are as follows: #Selected #Deselected ==Important events and properties== The Selected and Deselected events have an argument, called a MOU...")
- 14:36, 10 December 2024 PRG talk contribs created page RBX.lua.HopperBin (Object) (Created page with "{{CatUp|Class reference}} __NOTOC__ The HopperBin is an old system for creating usable tools for a player. It is outdated, but does not require a handle to function, so can be useful for action tools, passkeys, etc. In order to function, the bin must have a script as a child, which the bin runs an event when it is selected. This allows the creator to make a script that will run only when the tool has been selected. ==Functions== The HopperBin only incorporates the glo...")
- 14:36, 10 December 2024 PRG talk contribs created page How to script a HopperBin Tool (Created page with "{{CatUp|Tutorials}} This is a tutorial on how to script a simple Hopperbin tool in LUA. This guide is for people who already have a good knowledge of scripting, but want to learn how to make hopperbin tools. ==Getting Started== First, create a new hopperbin object. This is accomplished the same way you create a new script, open the Roblox Studio, click the insert tab, and select object. Find Hopperbin in the list and click ok. Name the hopperbin, and make sure that it...")
- 14:35, 10 December 2024 PRG talk contribs created page File:Fountain sample.jpg