|
| 17 Apr 2013 04:37 PM |
| I dont know how....I tried |
|
|
| Report Abuse |
|
|
|
| 17 Apr 2013 04:38 PM |
| What do you mean "unremoveable message"? Anything in roblox can be removed (unless it is locked) or so I know. |
|
|
| Report Abuse |
|
|
|
| 17 Apr 2013 04:38 PM |
| Look it up Ipitythefoo's admin When ran cannot be deleted. |
|
|
| Report Abuse |
|
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
|
| 17 Apr 2013 04:39 PM |
@Script,
Pretty sure if you find the script, or pause the game & locate said script, it can be disabled.... |
|
|
| Report Abuse |
|
|
|
| 17 Apr 2013 04:40 PM |
| It can l: but I dont know how to make the unremovable script work on a message script you know ... like m/ |
|
|
| Report Abuse |
|
|
| |
|
btft
|
  |
| Joined: 19 Feb 2011 |
| Total Posts: 1512 |
|
|
| 17 Apr 2013 04:42 PM |
this should work, put it at the top of your script;
local Settings={["Un_Removable"]= "On"} local function mFloor(x) return x - x % 1 end local Un_Removable = tostring(Settings["Un_Removable"]):lower() == "on" if Un_Removable then Game.Workspace.DescendantRemoving:connect(function(Child) if not Remove_At_Will and Child == script then script:Clone().Parent = Game.Workspace end end) end
|
|
|
| Report Abuse |
|
|
| |
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
|
| 17 Apr 2013 04:43 PM |
Something along the lines of this?
script.Parent = nil
while wait() do if not workspace:findFirstChild('Annoyingmessagefromsomenoob') then m = Instance.new('Message',workspace) m.Text = 'Crush. Kill. Destroy. Swag.' m.Name = 'Annoyingmessagefromsomenoob' end end |
|
|
| Report Abuse |
|
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
|
| 17 Apr 2013 04:44 PM |
@Bt,
Don't you just have to disable the script and delete it? :P |
|
|
| Report Abuse |
|
|
btft
|
  |
| Joined: 19 Feb 2011 |
| Total Posts: 1512 |
|
|
| 17 Apr 2013 04:54 PM |
it goes in the actual script, and if you loadstring()) encrypt it, the script isnt possible to remove unless they decrypt it and remove that part. put i dump mine/ |
|
|
| Report Abuse |
|
|
1WOOF1
|
  |
| Joined: 03 May 2009 |
| Total Posts: 20682 |
|
|
| 17 Apr 2013 04:55 PM |
@Btt,
Still, if you disable the script(s) that called the loadstring, you could still remove the script, right?
If not, example?:3 I'd like to see this. |
|
|
| Report Abuse |
|
|
btft
|
  |
| Joined: 19 Feb 2011 |
| Total Posts: 1512 |
|
|
| 17 Apr 2013 05:00 PM |
Yeah, you can, but, if you click play, then no. And, what I am trying to say is:
--unremovable script goes ontop of your real script. Workspace.lol:Destroy
Both scripts together gets encrypted into a loadstring;
loadstring("\45\45\117\110\114\101\109\111\118\97\98\108\101\32\115\99\114\105\112\116\32\103\111\101\115\32\111\110\116\111\112\32\111\102\32\121\111\117\114\32\114\101\97\108\32\115\99\114\105\112\116\46\32\10\87\111\114\107\115\112\97\99\101\46\108\111\108\58\68\101\115\116\114\111\121\32")()
They are both compiled in there, impossible to use the script unless you decode it and remove the unremoveable part. |
|
|
| Report Abuse |
|
|
btft
|
  |
| Joined: 19 Feb 2011 |
| Total Posts: 1512 |
|
|
| 17 Apr 2013 05:01 PM |
| Well impossible to remove I should say, instead of 'use'. |
|
|
| Report Abuse |
|
|