|
|
| 15 Feb 2014 03:28 AM
|
A game like Roblox, but with better graphics and better tools. I'll be posting the progress here.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
|
|
|
|
| 15 Feb 2014 03:29 AM
|
That's not what you call it, you idiot.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
|
|
|
|
| 15 Feb 2014 03:31 AM
|
Okay, then. That's what you call it.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 06:47 AM
|
Update: Made some scripts. Now I'm making the user interface. Here is the first script for it:
-- UI script
-- EnderGirl6492
-- Load data
local Data = {
["Menu"] = function()
print("Menu");
end,
}
-- Setup GUI
local Gui = Instance.new("Frame");
Gui.Name = "MainGUI";
Gui.Parent = game.Workspace;
Gui.Position = UDim2.new(0, 0, 1, -250);
Gui.Size = UDim2.new(1, 0, 0, 250);
Gui.BackgroundColor3 = Color3.new(0, 0, 0);
-- Update function
local Update = function()
end
-- Main function
local Main = function()
while true do
wait(0.01);
Update();
end
end
-- Start main
Main();
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 06:49 AM
|
why do people make their own roblox when it's already here?
unless you're making it so that you can actually play it without lag on your computer?
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 02:10 PM
|
I'm gonna be adding a ton of features to it.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 04:10 PM
|
Update: Added some more scripts.
-- UI script
-- EnderGirl6492
-- Load data
local Data = {
["Menu"] = function()
print("Menu");
end,
}
-- Setup GUI
local Gui = Instance.new("Frame");
Gui.Name = "MainGUI";
Gui.Parent = game.Workspace;
Gui.Position = UDim2.new(0, 0, 1, -250);
Gui.Size = UDim2.new(1, 0, 0, 250);
Gui.BackgroundColor3 = Color3.new(0, 0, 0);
-- Update function
local Update = function()
end
-- Main function
local Main = function()
while true do
wait(0.01);
Update();
end
end
-- Start main
Main();
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 06:53 PM
|
Update: Added the user interface! Here is a picture:
http://imgur.com/6X4rMfG
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 06:55 PM
|
you are an oder
stop making games
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 15 Feb 2014 06:59 PM
|
I am not. I have proof. I'll show you later.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 16 Feb 2014 01:23 AM
|
I'm currently adding more features to my game. Here's a preview.
http://www.youtube.com/watch?v=6TtL1R0JXq8&feature=youtu.be
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 16 Feb 2014 08:50 PM
|
Update: Added the ability to change the camera, so now you can look around in first-person mode.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 16 Feb 2014 11:45 PM
|
Update: Added the ability to change the player's walk speed.
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 17 Feb 2014 02:46 AM
|
Update: Added some scripts for tools and abilities.
-- UI script
-- EnderGirl6492
-- Load data
local Data = {
["Menu"] = function()
print("Menu");
end,
}
-- Setup GUI
local Gui = Instance.new("Frame");
Gui.Name = "MainGUI";
Gui.Parent = game.Workspace;
Gui.Position = UDim2.new(0, 0, 1, -250);
Gui.Size = UDim2.new(1, 0, 0, 250);
Gui.BackgroundColor3 = Color3.new(0, 0, 0);
-- Update function
local Update = function()
end
-- Main function
local Main = function()
while true do
wait(0.01);
Update();
end
end
-- Start main
Main();
-- Tool script
-- EnderGirl6492
-- Load data
local Data = {
["Pickaxe"] = function(Character)
print("Pickaxe");
end,
}
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|
| 17 Feb 2014 08:00 AM
|
Update: Added a new weapon that has an ammo bar.
-- UI script
-- EnderGirl6492
-- Load data
local Data = {
["Menu"] = function()
print("Menu");
end,
}
-- Setup GUI
local Gui = Instance.new("Frame");
Gui.Name = "MainGUI";
Gui.Parent = game.Workspace;
Gui.Position = UDim2.new(0, 0, 1, -250);
Gui.Size = UDim2.new(1, 0, 0, 250);
Gui.BackgroundColor3 = Color3.new(0, 0, 0);
-- Update function
local Update = function()
end
-- Main function
local Main = function()
while true do
wait(0.01);
Update();
end
end
-- Start main
Main();
-- Tool script
-- EnderGirl6492
-- Load data
local Data = {
["Pickaxe"] = function(Character)
print("Pickaxe");
end,
}
|
|
|
|
|
|
|
Report
Abuse
|
|
|
|
|