pighead10Join Date: 2009-05-03 Post Count: 10341 |
I'm an expert building, average scripter. So go ahead and ask me questions ;D |
|
ACEmatJoin Date: 2009-11-26 Post Count: 231 |
How would i see farther in a game? In marks game, the space one, some people can see the whole map, cause they said there is a setting in Roblox Studio, that allows you to see farther. They wouldnt read the chat when i asked them how, so now im asking you. Is this true and how do i do this? |
|
|
As far as I know it isn't true.
It works like this(correct me if im wrong):
if you have.. 10000 bricks in 1 map, your PC whould lagg VERY MUCH.
Thats why roblox "Hides" bricks that are.. far away, to prevent lagg.
if you have a very good PC, you can see more bricks then someone with a bad PC.(or it whould just lagg for the one with the bad pc.)
|
|
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
It prevents you from seeing further to prevent lag. |
|
aaa90Join Date: 2008-07-30 Post Count: 4 |
How do you cframe bricks? |
|
ACEmatJoin Date: 2009-11-26 Post Count: 231 |
ok that i know, go to free models (c-framer is a tool) and search C-Framer. Pick any one dont matter. Then use that to C-Frame your bricks. then when your done just drop the tool off the edge, cut it in the explorer tab, or reset with it. |
|
|
i was build my place when a big lag come. i quit and save and after (now)
When i want to build or play whan i clic on my place thats told me : internetQueryDataAvailable, err=0x2EE2 PLEASE i dont want to delete my place and i need help :'( i have worked hard on it and i dont want to lose my map :'( |
|
|
How do you build an average zombie? not an infecting one, but a damaging one? |
|
|
@Commando64
The scripts for zombies are usually in the arms.(kill script or infect script)
If it is an infect script, remove it and replace it with a "OnTouch" script.
But...
Maybe you could just try searching for a "Killing zombie" and edit the script of it.
:P
|
|
|
@blink
I tried to play your game, and it works for me.
But I suggest you try to "lower" the version.
How to do that?:
Press Configure(you can find that under the Place Picture)
Then you see a list of "Versions".
Choose the 1st Version(from above).
**WARNING**
All the things you did in your last update will be LOST.(Unless you change the version again.)
|
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
@Command
If you want to build a full zombie, then you need some advanced scripting. Look at the wiki - there are some good scripts for zombies. If you want to make the damage, put scripts in the arms:
d = 5 --Change this to the damage you want it to do
function Touched(hit)
if (hit.Parent:findFirstChild("Humanoid") ~= nil) then
local h = hit.Parent:findFirstChild("Humanoid")
health = h.Health
health = health - tostring(d)
else return
end
end
script.Parent.Touched:connect(Touched) |
|
EllossJoin Date: 2009-03-15 Post Count: 7044 |
Public command broken (Move to any part)
function onChatted(msg, speaker)
msg = string.lower(msg)
if game.speaker:findFirstChild(msg) ~= nil then
Workspace.speaker.Torso.CFrame=Workspace[msg].CFrame
end
function onPlayerEntered(newPlayer)
newPlayer.Chatted:connect(function(msg) onChatted(msg, newPlayer) end)
end
end
game.Players.ChildAdded:connect(onPlayerEntered)
Pants door doesnt kill when the toucher has no pants
function onTouched(hit)
local p = script.Parent
local check = hit.Parent:findFirstChild("Humanoid")
if (check ~= nil) then
local admin = hit.Parent:findFirstChild("Pants")
if (admin ~= nil) then
if admin.PantsTemplate == "http://www.roblox.com/asset/?id=25174162" then
p.CanCollide = false
p.Transparency = .7
wait(5)
p.CanCollide = true
p.Transparency = 0
else check.Health = 0
end
end
end
end
script.Parent.Touched:connect(onTouched)
|
|
bvmattJoin Date: 2009-05-08 Post Count: 1 |
how do you get a driving tool or make a tool giver |
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
@elloss I'm a builder, not a scripter. I'm okay as a scripter, but I've never used onChatted before, so I don't know...
@bvmatt More scripting ... to get a standard driving tool to operate a free model car, you'll need a free model tool. I suggest building your own arrow keys car, using the basic cars avalible on the Vehicles section of the build mode insert menu. To make a tool giver, you need a script which I probably could do if I tried, but I'm not going to. Go to the scripting helpers forum. |
|
Supman194Join Date: 2010-05-08 Post Count: 47 |
whats the easyest way to advertise my place? do i have to download somthing |
|
Supman194Join Date: 2010-05-08 Post Count: 47 |
oh and how good r u at tycoons? |
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
@supman194
To advertise your place, I have a feeling you need Builders Club. If you have it, then go onto you place's badge and click 'Advertise this place'.
And I can make tycoons with a tycoon kit... lol |
|
Supman194Join Date: 2010-05-08 Post Count: 47 |
well im tbc and how do you get a tycoon kit?
|
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
Look on my models, it's tycoon kit by NintendoZERG or summat. |
|
dertdoodJoin Date: 2010-02-20 Post Count: 4410 |
[ Content Deleted ] |
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
You need a decent image editor. |
|
Supman194Join Date: 2010-05-08 Post Count: 47 |
how do i sell my admin shirt i just made? |
|
pighead10Join Date: 2009-05-03 Post Count: 10341 |
Go onto your admin shirt's page, and find 'Configure Shirt'. Click on that, and scroll down untill you find 'sell this item'. Tick the box and enter in the amount you want it to sell for. |
|
Supman194Join Date: 2010-05-08 Post Count: 47 |
could you build me a code door that i could make bigger or smaller to fit the area i need it in? |
|