Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you disable the "Backspace" ?

Asked by
Bulvyte 388 Moderation Voter
8 years ago

As the title says. I cannot find or make my own script like it's when a player wants to drop an item with key Backspace it denies and won't let him do that. I'm just making a game where u cant share stuff with others

help meh :3

1
There's a CanBeDropped property of tools. funyun 958 — 8y
0
Oh!! dang i did not see that, thank you so much! Bulvyte 388 — 8y

1 answer

Log in to vote
0
Answered by 8 years ago

http://wiki.roblox.com/index.php?title=Special_Characters

if key:byte() == 8 then -- 8 Is the backspace key according to Roblox Wiki
    --Content to disable
end
Ad

Answer this question