tefraz
|
  |
| Joined: 23 Dec 2011 |
| Total Posts: 76866 |
|
| |
|
| |
|
|
| 02 Feb 2014 03:40 PM |
| I really have no clue. I just know Admin. In the Kohl's Admin script, I think there was something that allowed the person to get Admin if they buy a certain pass. |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:41 PM |
Hey,
a script in workspace
local passid = 142721236 function ifplayerhasPass(Player) return game:GetService("GamePassService"):PlayerHasPass(Player,passid ) end game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(Character) if ifplayerhasPass(player) then print("Player has the GamePass") local abc = game.Lighting.SpeedCoil:clone() --Put the Gear in Lighting! abc.Parent = player.Backpack end end) end)
|
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:45 PM |
The links that would halp.
http://wiki.roblox.com/index.php?title=Clone_(Method)&redirect=no
http://wiki.roblox.com/index.php/CharacterAdded_(Event)
http://wiki.roblox.com/index.php/PlayerAdded_(Event)
http://wiki.roblox.com/index.php/PlayerHasPass_(Method)
http://wiki.roblox.com/index.php/Game_Pass
http://wiki.roblox.com/index.php/Variables
http://wiki.roblox.com/index.php/RBX.lua.Script_(Object) |
|
|
| Report Abuse |
|
|
| |
|
|
| 02 Feb 2014 03:48 PM |
| @xx, show me where this script is. |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:49 PM |
@iluvys
In the links you just posted. -.- |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:51 PM |
| @un, uhmm, nothing is copy, pasted from there...If you actually know how to script, you would know that. |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 02 Feb 2014 03:52 PM |
| @xx, that's the way to do it... What would you like to see me Script? |
|
|
| Report Abuse |
|
|
| |
|
|
| 02 Feb 2014 03:53 PM |
I'll make a simple .ChildAdded Script for you begginers.
game.Workspace.ChildAdded:connect(function(Child) if Child:IsA("Hat") then Child:Detroy()
end end)
This would remove the players hat when they take it off. |
|
|
| Report Abuse |
|
|
|
| 02 Feb 2014 03:54 PM |
@ilov
Where is your famous game? Hmm?
Besides, scripting is just 1/2 of making a game. You BUILD, and SCRIPT. But some of us may just build. |
|
|
| Report Abuse |
|
|
| |
|
|
| 02 Feb 2014 03:57 PM |
| @xx, LMAO, where did I copy this script from lmao! |
|
|
| Report Abuse |
|
|
| |
|
tefraz
|
  |
| Joined: 23 Dec 2011 |
| Total Posts: 76866 |
|
| |
|
| |
|
| |
|
tefraz
|
  |
| Joined: 23 Dec 2011 |
| Total Posts: 76866 |
|
| |
|
| |
|