generic image
Processing...
  • Games
  • Catalog
  • Develop
  • Robux
  • Search in Players
  • Search in Games
  • Search in Catalog
  • Search in Groups
  • Search in Library
  • Log In
  • Sign Up
  • Games
  • Catalog
  • Develop
  • Robux
   
ROBLOX Forum » Game Creation and Development » Building Helpers
Home Search
 

Re: VIP

Previous Thread :: Next Thread 
2eEZ4u is not online. 2eEZ4u
Joined: 15 Jul 2011
Total Posts: 66
04 Dec 2011 12:19 PM
I need a really good person who is BC, can build, and can script to make me VIP for my game. I asking all of you BCers that have more than 1k visits.
Report Abuse
GuessWhoGhostIsIt is not online. GuessWhoGhostIsIt
Joined: 17 Sep 2011
Total Posts: 554
04 Dec 2011 12:48 PM
I wanted to help but saw the requirments to answer.

*makes OKAY face and walks away*
Report Abuse
kilkil912 is not online. kilkil912
Joined: 27 Aug 2011
Total Posts: 1288
04 Dec 2011 12:52 PM
I might be able to help you.
Report Abuse
USArockssoccer15 is not online. USArockssoccer15
Joined: 28 Jun 2010
Total Posts: 9719
04 Dec 2011 12:52 PM
how come only the BC get to make it why not the nbc without 1000 visits. you can learn yourself at the roblox wiki:
1.Open your place in Roblox Studio. Make a cool room with something awesome in it that you don't want everyone to have.

2.Select the brick (not several bricks, or a group of bricks, or a model, but a single brick) that you want to be the VIP door. You will need to stretch a brick to make it the size you need to fit a humanoid through a brick. Then, click Insert and select Object. Find the Script object in the menu that appears, and select it.

3.Double click on the script in the Explorer tab (on the right) to open it. Copy the script at the bottom of this page into it.

4.Change the names in the permission section to those of the people you want to let through the door. NOTE: If you test the VIP doors in Roblox Studio by selecting play solo they will not work as your name becomes 'player'.
Getting the shirt's asset
Go open up Roblox Studio, add a baseplate, and test the game (Tools > Test > Play Solo). Put this script in the command bar:

print(game.Workspace.Player.Shirt.ShirtTemplate)
Make sure the Output window is open, and copy and paste that asset link into the shirt variable at the top of the scripts listed below.

Getting the t-shirt's asset
Go open up Roblox Studio, add a baseplate, and test the game (Tools > Test > Play Solo). Put this script in the command bar:

print(game.Workspace.Player.ShirtGraphic.Graphic)
Make sure the Output window is open, and copy and paste that asset link into the shirt variable at the top of the scripts listed below.

VIP door scripts
Personal door
local user = "Player" -- change this to the name of the person the personal door belongs to

local door = script.Parent
local doorTransparency = door.Transparency

function onTouched(hit)
local character = hit.Parent

if character:FindFirstChild("Humanoid") then
if string.lower(character.Name) == string.lower(user) then
door.CanCollide = false
door.Transparency = 0.4

wait(4) -- You can change the number to the amount of seconds you want the door to be open
door.CanCollide = true
door.Transparency = doorTransparency
else
character:BreakJoints() -- remove this line if you want a non-killing door
end
end
end

script.Parent.Touched:connect(onTouched)Personal + T-Shirt door
local user = "Player" -- change this to the name of the person the personal door belongs to
local shirt = "ASSET ID HERE" -- change this to the t-shirt's asset ID

local door = script.Parent
local doorTransparency = door.Transparency

function onTouched(hit)
local character = hit.Parent

if character:FindFirstChild("Humanoid") then
if character.Name:lower == user:lower() or
character.ShirtGraphic.Graphic == shirt then
door.CanCollide = false
door.Transparency = 0.4

wait(4) -- The length of time you want the door to be open for

door.CanCollide = true
door.Transparency = doorTransparency
else
character:BreakJoints() -- remove this line if you want a non-killing door
end
end
end

door.Touched:connect(onTouched)Personal + Shirt door
local user = "Player" -- change this to the name of the person the personal door belongs to
local shirt = "ASSET ID HERE" -- change this to the shirt's asset ID

local door = script.Parent
local doorTransparency = door.Transparency

function onTouched(hit)
local character = hit.Parent

if character:FindFirstChild("Humanoid") then
if character.Name:lower() == user:lower() or
character.Shirt.ShirtTemplate == shirt then
door.CanCollide = false
door.Transparency = 0.4

wait(4) -- The length of time you want the door to be open for

door.CanCollide = true
door.Transparency = doorTransparency
else
character:BreakJoints() -- remove this line if you want a non-killing door
end
end
end

door.Touched:connect(onTouched)Door for multiple people
The secret to this is creating a table with the users that you want allowed in to your door, then when somebody touches it, you loop through the table to check if the toucher's name matches one of the names in the table.

local users = {"Flurite", "Player"} --you can add more player's here

function onTouched(hit)
for _, username in ipairs(users) do --I used ipairs to loop through the table
if hit.Parent.Name:lower() == username:lower() then --checks if the toucher's name matches the current username
script.Parent.CanCollide = false
script.Parent.Transparency = 0.4
wait(3)
script.Parent.CanCollide = true
script.Parent.Transparency = 0
end
end
end

script.Parent.Touched:connect(onTouched)
Personal + Group door
local user = "Player" -- change this to the name of the person the personal door belongs to
local groupId = 7 -- change this to your group's ID (7 is the official Roblox fan club)

local door = script.Parent
local doorTransparency = door.Transparency

function onTouched(hit)
local character = hit.Parent
local player = game.Players:GetPlayerFromCharacter(character)
if player and (player.Name:lower() == user:lower() or player:IsInGroup(groupId)) then
door.CanCollide = false
door.Transparency = 0.4

wait(4) -- The length of time you want the door to be open for

door.CanCollide = true
door.Transparency = doorTransparency
else
character:BreakJoints() -- remove this line if you want a non-killing door
end
end
end

door.Touched:connect(onTouched)Door which doesn't require players to wear the item
Using this method, the player doesn't have to be wearing the VIP Item, they only have to own it.

Also using this method will allow you to use any item for VIP: Badges, Gears, Hats, Shirts - whatever you can think of.

local vipItem = 0000 -- Change 0000 to the ID of the VIP Item

function onTouched(hit)
local player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player then -- Make sure there's a player so it won't error
if game:GetService("BadgeService"):UserHasBadge(player.userId, vipItem) then -- This is the part that actually checks to see if the player owns the item
script.Parent.CanCollide = false
script.Parent.Transparency = 0.4
wait(3)
script.Parent.CanCollide = true
script.Parent.Transparency = 0
end
end
end

script.Parent.Touched:connect(onTouched)
Report Abuse
2eEZ4u is not online. 2eEZ4u
Joined: 15 Jul 2011
Total Posts: 66
04 Dec 2011 01:01 PM
1. Wow thanks for the script, you are a good scripter. 2. I can make the VIP shirt but can't keep it on sale.
Report Abuse
theopfor is not online. theopfor
Joined: 08 Feb 2011
Total Posts: 11003
04 Dec 2011 01:05 PM
@USA Why did you copy and paste the wiki page? You could've just posted a link.
Report Abuse
USArockssoccer15 is not online. USArockssoccer15
Joined: 28 Jun 2010
Total Posts: 9719
04 Dec 2011 01:05 PM
you can make certain players.... doesnt have to be a t-shirt
Report Abuse
USArockssoccer15 is not online. USArockssoccer15
Joined: 28 Jun 2010
Total Posts: 9719
04 Dec 2011 01:07 PM
@theo
watever
anyways here is da link:::
http://wiki.roblox.com/index.php/How_do_I_make_VIP_doors%3F
Report Abuse
2eEZ4u is not online. 2eEZ4u
Joined: 15 Jul 2011
Total Posts: 66
04 Dec 2011 01:07 PM
Yes I know that, but if it get's famous. They'll bother me and won't play my game anymore. I want to be famous.
Report Abuse
USArockssoccer15 is not online. USArockssoccer15
Joined: 28 Jun 2010
Total Posts: 9719
04 Dec 2011 01:11 PM
Btw 2e if you want to get famous why would you let someone build stuff for you and if you stink at building... just tell another person to build a VIP exept you describe your way... if you dont, it is really the person's(who built it) VIP, and you just got a free model
Report Abuse
2eEZ4u is not online. 2eEZ4u
Joined: 15 Jul 2011
Total Posts: 66
04 Dec 2011 01:42 PM
Just look at TheFurryFox, TheGamer101, Littozinnamon. Do they ask for models? No! They just get free models by other people. FOR FREE.
Report Abuse
kilkil912 is not online. kilkil912
Joined: 27 Aug 2011
Total Posts: 1288
04 Dec 2011 01:57 PM
Dude ill make you theV.I.P door fully done for FREE just pm me the T-Shirt link.
Report Abuse
flatdud is not online. flatdud
Joined: 05 Nov 2010
Total Posts: 15
04 Dec 2011 02:32 PM
dude now can u gime the free vip door
Report Abuse
Atomicwaldo is not online. Atomicwaldo
Joined: 22 Apr 2010
Total Posts: 9465
04 Dec 2011 03:23 PM
?/
Report Abuse
kilkil912 is not online. kilkil912
Joined: 27 Aug 2011
Total Posts: 1288
04 Dec 2011 04:31 PM
Yup just PM me the link to the VIP T-Shirt and i can
.
Report Abuse
2eEZ4u is not online. 2eEZ4u
Joined: 15 Jul 2011
Total Posts: 66
04 Dec 2011 05:18 PM
Okay kilkil912, make the door. I will make someone do the VIP T-Shirt.
Report Abuse
kilkil912 is not online. kilkil912
Joined: 27 Aug 2011
Total Posts: 1288
04 Dec 2011 06:27 PM
Ok.
Report Abuse
3brothers3mcj is not online. 3brothers3mcj
Joined: 12 Dec 2010
Total Posts: 217
04 Dec 2011 08:54 PM
Easy script
Report Abuse
benjy1293 is not online. benjy1293
Joined: 29 May 2011
Total Posts: 8105
06 Dec 2011 11:09 PM
You dont get famous by just "getting someone to make you a game." Also they are not famous off of free models. They make there own narb.
Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Building Helpers
   
 
   
  • About Us
  • Jobs
  • Blog
  • Parents
  • Help
  • Terms
  • Privacy

©2017 Roblox Corporation. Roblox, the Roblox logo, Robux, Bloxy, and Powering Imagination are among our registered and unregistered trademarks in the U.S. and other countries.



Progress
Starting Roblox...
Connecting to Players...
R R

Roblox is now loading. Get ready to play!

R R

You're moments away from getting into the game!

Click here for help

Check Remember my choice and click Launch Application in the dialog box above to join games faster in the future!

Gameplay sponsored by:
Loading 0% - Starting game...
Get more with Builders Club! Join Builders Club
Choose Your Avatar
I have an account
generic image