ajrox
|
  |
| Joined: 14 Jul 2008 |
| Total Posts: 13765 |
|
|
| 03 Jul 2012 02:05 AM |
And if so, how can I make people access VIP with a fee?
OT: Offers on 12k robux? |
|
|
| Report Abuse |
|
|
iguodala
|
  |
| Joined: 24 Dec 2010 |
| Total Posts: 16467 |
|
| |
|
moryo7
|
  |
| Joined: 19 Jul 2010 |
| Total Posts: 5028 |
|
|
| 03 Jul 2012 02:05 AM |
Fee as in In-game cash or R$?
-> Siggies are non-existant. <- |
|
|
| Report Abuse |
|
|
Solotaire
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 30356 |
|
|
| 03 Jul 2012 02:05 AM |
| define: access VIP with a fee |
|
|
| Report Abuse |
|
|
Tai8530
|
  |
| Joined: 08 May 2010 |
| Total Posts: 3094 |
|
|
| 03 Jul 2012 02:06 AM |
What do you mean by with a fee? Like a tshirt? or like in game money?
#YKFGLB |
|
|
| Report Abuse |
|
|
ajrox
|
  |
| Joined: 14 Jul 2008 |
| Total Posts: 13765 |
|
| |
|
ajrox
|
  |
| Joined: 14 Jul 2008 |
| Total Posts: 13765 |
|
|
| 03 Jul 2012 02:07 AM |
| like buy tshirt, wear it, walk through door |
|
|
| Report Abuse |
|
|
IceLord64
|
  |
| Joined: 29 Aug 2011 |
| Total Posts: 3603 |
|
|
| 03 Jul 2012 02:07 AM |
Make a T-shirt VIP
Hey I just met you, and this is crazy. But I have alzhimers, hey I just met you. |
|
|
| Report Abuse |
|
|
Solotaire
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 30356 |
|
|
| 03 Jul 2012 02:13 AM |
shirtID = putyourshirtidhere door = script.Parent -- Appropriate path if needed.
script.Parent.Touched:connect(function(character) player = game.Players:getPlayerFromCharacter(character) if game:GetService('BadgeService'):UserHasBadge(player.userId, shirtID) then door.CanCollide = false door.Transparency = .5 wait(3) door.CanCollide = true door.Transparency = 0 end end) |
|
|
| Report Abuse |
|
|
Solotaire
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 30356 |
|
|
| 03 Jul 2012 02:27 AM |
shirtID = 1082056 -- Put the shirt's ID here. If that doesn't work, use the asset ID. door = script.Parent -- Appropriate path if needed.
script.Parent.Touched:connect(function(hit) player = game.Players:getPlayerFromCharacter(hit.Parent)
if game:GetService('BadgeService'):UserHasBadge(player.userId, shirtID) then door.CanCollide = false door.Transparency = .5 wait(3) door.CanCollide = true door.Transparency = 0 end end) |
|
|
| Report Abuse |
|
|
Solotaire
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 30356 |
|
|
| 03 Jul 2012 03:20 AM |
more fixes:
shirtID = 1082056 -- Change to ID door = script.Parent
script.Parent.Touched:connect(function(hit) print("touched") player = game.Players:GetPlayerFromCharacter(hit.Parent)
if player then if game:GetService('BadgeService'):UserHasBadge(player.userId, shirtID) then door.CanCollide = false door.Transparency = .5 wait(3) door.CanCollide = true door.Transparency = 0 end end end)
print("running")
|
|
|
| Report Abuse |
|
|
C0NN0RB0B
|
  |
| Joined: 02 Sep 2010 |
| Total Posts: 7741 |
|
| |
|
|
| 03 Jul 2012 03:25 AM |
| dud, dis aint script helpers |
|
|
| Report Abuse |
|
|
|
| 03 Jul 2012 03:27 AM |
| What solotaire said , But go in-game wearing t-shirt , copy the asset and then put it where he says ID |
|
|
| Report Abuse |
|
|
ajrox
|
  |
| Joined: 14 Jul 2008 |
| Total Posts: 13765 |
|
|
| 03 Jul 2012 09:14 AM |
| @thomaszand you can't when the building mode doesn't have studio anymore |
|
|
| Report Abuse |
|
|
yi18
|
  |
| Joined: 30 Aug 2010 |
| Total Posts: 11443 |
|
| |
|
funnyjo
|
  |
| Joined: 20 Mar 2011 |
| Total Posts: 5280 |
|
|
| 03 Jul 2012 09:17 AM |
This isn't that hard...
Donkey + Horse = Mule ~ Simple math |
|
|
| Report Abuse |
|
|
yanz12
|
  |
| Joined: 15 Jun 2010 |
| Total Posts: 18576 |
|
|
| 03 Jul 2012 09:19 AM |
@Aj
...
Thats why you go into Studio Mode and then into Edit mode... Only way how it works... |
|
|
| Report Abuse |
|
|
|
| 03 Jul 2012 09:20 AM |
I can do it still.... I think.
I don't have a siggy. |
|
|
| Report Abuse |
|
|
|
| 03 Jul 2012 09:22 AM |
| I did it with my RPG , go to tools , test , Play solo and copy |
|
|
| Report Abuse |
|
|
pierifle2
|
  |
| Joined: 29 Jul 2010 |
| Total Posts: 6856 |
|
|
| 03 Jul 2012 09:23 AM |
Send me a party if you REALLY need to know.
pa-trollin' the area |
|
|
| Report Abuse |
|
|
Solotaire
|
  |
| Joined: 30 Jul 2009 |
| Total Posts: 30356 |
|
|
| 03 Jul 2012 12:52 PM |
Thomas, the way I have it is easier, as you can use the shirt's ID and not have to go get the asset. In addition, they don't even need to be wearing it, which is nice too. However, the other way is still valid if he really wants them to have to wear the shirt.
You could also note that the asset ID of a shirt is its ID minus one (very rarely minus two) if you wanted to save some time. |
|
|
| Report Abuse |
|
|