Advertisement
Upscalefanatic3

Arcane Adventure Script

Sep 22nd, 2017
1,978
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.89 KB | None | 0 0
  1. game.Workspace.[PlayerName].[Shirt,Pants,Hat,Acc,Acc2]Armor.Value = "What ever you want"
  2.  
  3. [NOTE] To get enchanted items add a "! @ # $ % ^ & *" ( Each one of them represents a certain enchant. For blessed it is $, and for hardened is @)
  4.  
  5. An example script would be: game.Workspace.Noobman123.ShirtArmor.Value = "$Sunken Champion Armor"
  6.  
  7. The above would give me a blessed sunken champion armor top.
  8.  
  9.  
  10.  
  11.  
  12. Step 1. Execute this
  13. local npc = "NPC your close to, can be a shop"
  14. --End of script setup/settings - dont change anything below this
  15. local y = game.Workspace.UnhurtableNPCs[npc].ChatNumber
  16. backup = y:Clone()
  17. backup.Parent = workspace
  18. backup.Name = "backup"
  19. wait(.1)
  20. y.Value = 1
  21. y.Prompt.Value = "..."
  22. for i, v in pairs(y.Prompt:GetChildren()) do
  23. v:Destroy()
  24. end
  25.  
  26.  
  27.  
  28. Example:
  29.  
  30.  
  31.  
  32. local npc = "Theos"
  33. --End of script setup/settings - dont change anything below this
  34. local y = game.Workspace.UnhurtableNPCs[npc].ChatNumber
  35. backup = y:Clone()
  36. backup.Parent = workspace
  37. backup.Name = "backup"
  38. wait(.1)
  39. y.Value = 1
  40. y.Prompt.Value = "..."
  41. for i, v in pairs(y.Prompt:GetChildren()) do
  42. v:Destroy()
  43. end
  44.  
  45.  
  46.  
  47. Step 2: Execute this(edited)
  48. local thingyouwant = "What ever you want"
  49. local npc = "NPC from step 1"
  50. --End of script setup/settings - dont change anything below this
  51. local v = game.workspace.backup.Prompt
  52. local y = game.Workspace.UnhurtableNPCs[npc]
  53. local x = Instance.new("StringValue" , workspace)
  54. local a = Instance.new("BoolValue" , workspace)
  55. x.Name = "Item"
  56. x.Value = thingyouwant
  57. x.Parent = y.ChatNumber.Prompt
  58. a.Name = "Weapon"
  59. a.Parent = y.ChatNumber.Prompt.Item
  60. wait(15)
  61. y.ChatNumber.Prompt:Destroy()
  62. v.Parent = y.ChatNumber
  63. wait(.1)
  64. game.workspace.backup:Destroy()
  65.  
  66.  
  67.  
  68.  
  69. Example:
  70.  
  71.  
  72.  
  73. local thingyouwant = "Colossal Cutlass"
  74. local npc = "Theos"
  75. --End of script setup/settings - dont change anything below this
  76. local v = game.workspace.backup.Prompt
  77. local y = game.Workspace.UnhurtableNPCs[npc]
  78. local x = Instance.new("StringValue" , workspace)
  79. local a = Instance.new("BoolValue" , workspace)
  80. x.Name = "Item"
  81. x.Value = thingyouwant
  82. x.Parent = y.ChatNumber.Prompt
  83. a.Name = "Weapon"
  84. a.Parent = y.ChatNumber.Prompt.Item
  85. wait(15)
  86. y.ChatNumber.Prompt:Destroy()
  87. v.Parent = y.ChatNumber
  88. wait(.1)
  89. game.workspace.backup:Destroy()
  90.  
  91.  
  92.  
  93.  
  94. [IMPORTANT NOTE] After 15 seconds the npcs chat will go back to default to prevent admins from figuring this out, also so that if an admin joins on you just stall for 15 seconds to get rid of all traces of the script. Simply repeat the process of executing both scripts after it reverts back to the original.(edited)
  95. Step 3. Enjoy items!
  96.  
  97.  
  98. [NOTES]
  99.  
  100.  
  101. 1. Can get anything other than enchants, even tourney and admin items.
  102.  
  103. 2. Only works once per item IF ITS IN YOUR INVENTORY, for example I just spawn a krakens band then it wont let me get another until I either trade off or sell the current one that is in my inventory.(edited)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement