|
Is it possible to somehow grab the way a Player can store his Tools under the key ` (his backpack)
And insert the same storage place into a brick?
So a player can grab and drop Tools from his Backpack into the Brick?
Not sure if I explained it well.
|
|
|
Somewhat a locker/storage box, where you can place Tools and later come and pick them up from there?
Even after death?
|
|
|
|
|
|
|
check if the player has tools in its backpack and clone the tools the brick |
|
|
You don't understand my question,
|
|
|
Oh. I apologize. Do you mind assisting me with something? |
|
C_SharperJoin Date: 2011-10-03 Post Count: 9405 |
You didn't explain it well. |
|
|
I'm just wondering whether it is possible to grab the way a Player can place Tools into his backpack by pressing the ` key (left of 1/! key), and using the same way they can store items in their backpack, in a brick which would store them?
Somewhat a locker/storage box, where you can place Tools and later come and pick them up from there?
Not sure if I explained it well enough here, if not - Please ask questions :)
|
|
C_SharperJoin Date: 2011-10-03 Post Count: 9405 |
uhh
game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(k)
print(k)
end)
A keydown function that prints the key pressed. |
|
litalelaJoin Date: 2010-03-30 Post Count: 6267 |
lmao @ keydown
➳Lɪᴛᴀʟᴇʟᴀ ɪs ᴍʏ ɴᴀᴍᴇ, Lᴜᴀ ɪs ᴍʏ ɢᴀᴍᴇツ |
|
C_SharperJoin Date: 2011-10-03 Post Count: 9405 |
@lit
e.e
local keys = game:GetService("UserInputService"):GetKeysPressed() --Array of keys that are being pressed
|
|
|
I'm probably not explaining it too well,
I'm trying to create a Storage Box, where I could place tools (working the same way as ROBLOX backpack thing).
1. I have a worthy tool in my Backpack, I don't want to lose it in case I die
2. I place the tool into my Storage Box,
3. I die on my adventure,
4. I respawn, I lost everything I had with me,
5. I go to my house, open the Storage Box,
6. I pick up my worthy tool, because I placed it there before going on an adventure.
|
|
C_SharperJoin Date: 2011-10-03 Post Count: 9405 |
Okay, but I'm not sure what you're looking from us here though. If you could specify what you're looking for that would be great. |
|
|
Is the ROBLOX backpack script accessible? If so, then how would I get hold of it?
|
|
C_SharperJoin Date: 2011-10-03 Post Count: 9405 |
I'd doubt it. But there's probably a way to do what you're trying to do with either UIS or keydown. |
|