Advertisement
munciseek

设置

Feb 19th, 2025 (edited)
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 33.98 KB | None | 0 0
  1. --顶部UI
  2. local TweenService = game:GetService("TweenService")
  3. local UserInputService = game:GetService("UserInputService")
  4. local ContextActionService = game:GetService("ContextActionService")
  5.  
  6. local TopbarUI = game.Players.LocalPlayer.PlayerGui.TopbarUI.ButtonsLeft
  7. local MainUI = game.Players.LocalPlayer.PlayerGui.Sciptmode.Main
  8. local ModeUI = MainUI.Modifier.List.Mode
  9. local ItemUI = MainUI.Modifier.List.Item
  10. local ThemeUI = MainUI.Modifier.List.Theme
  11. local ModeSettings = MainUI.Modifier.Preview
  12. local Open = false
  13. local Mode = false
  14. local Item = false
  15. local Theme = false
  16.  
  17. local MenuButton = Instance.new("TextButton")
  18. MenuButton.Size = UDim2.new(0, 44, 0, 44)
  19. MenuButton.Text = " "
  20. MenuButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  21. MenuButton.BackgroundTransparency = 0.3
  22. MenuButton.Parent = TopbarUI
  23. MenuButton.LayoutOrder = -1
  24. MenuButton.Name = "Scrpts-Mode MenuButton"
  25.  
  26. local MenuButtonImage = Instance.new("ImageLabel")
  27. MenuButtonImage.BackgroundTransparency = 1
  28. MenuButtonImage.Size = UDim2.new(0.75, 0, 0.75, 0)
  29. MenuButtonImage.AnchorPoint = Vector2.new(0.5, 0.5)
  30. MenuButtonImage.Position = UDim2.new(0.5, 0, 0.5, 0)
  31. MenuButtonImage.Image = "rbxassetid://106301167631445"
  32. MenuButtonImage.Parent = MenuButton
  33.  
  34. local UIAspectRatioConstraint1 = Instance.new("UIAspectRatioConstraint")
  35. UIAspectRatioConstraint1.Parent = MenuButtonImage
  36.  
  37. local TextTitle = Instance.new("TextLabel")
  38. TextTitle.BackgroundTransparency = 1
  39. TextTitle.Size = UDim2.new(0.128, 0, 1, 0)
  40. TextTitle.Font = Enum.Font.Oswald
  41. TextTitle.TextScaled = true
  42. TextTitle.Text = "Scripts Mode"
  43. TextTitle.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. TextTitle.Parent = TopbarUI
  45. TextTitle.LayoutOrder = 0
  46. TextTitle.Name = "Scripts Mode"
  47.  
  48. local Corner1 = Instance.new("UICorner")
  49. Corner1.Parent = MenuButton
  50. Corner1.CornerRadius = UDim.new(1, 1)
  51.  
  52. local List = Instance.new("Frame")
  53. List.Size = UDim2.new(0, 0, 0, 0)
  54. List.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  55. List.BackgroundTransparency = 0.3
  56. List.Position = UDim2.new(0, 0, 1, 0)
  57. List.Size = UDim2.new(1, 0, 0, 0)
  58. List.Parent = MenuButton
  59.  
  60. local Corner2 = Instance.new("UICorner")
  61. Corner2.Parent = List
  62. Corner2.CornerRadius = UDim.new(1, 1)
  63.  
  64. local UIGridLayout = Instance.new("UIGridLayout")
  65. UIGridLayout.CellSize = UDim2.new(1, 0, 0.29, 0)
  66. UIGridLayout.CellPadding = UDim2.new(0, 5, 0, 5)
  67. UIGridLayout.Parent = List
  68.  
  69. local ModeButton = Instance.new("ImageButton")
  70. ModeButton.BackgroundTransparency = 1
  71. ModeButton.LayoutOrder = 1
  72. ModeButton.Image = "rbxassetid://85027147222252"
  73. ModeButton.Parent = List
  74. local UIAspectRatioConstraint2 = Instance.new("UIAspectRatioConstraint")
  75. UIAspectRatioConstraint2.Parent = ModeButton
  76. local Corner1 = Instance.new("UICorner")
  77. Corner1.Parent = ModeButton
  78. Corner1.CornerRadius = UDim.new(1, 1)
  79.  
  80. local ItemButton = Instance.new("ImageButton")
  81. ItemButton.BackgroundTransparency = 1
  82. ItemButton.LayoutOrder = 2
  83. ItemButton.Image = "rbxassetid://109328845782391"
  84. ItemButton.Parent = List
  85. local UIAspectRatioConstraint3 = Instance.new("UIAspectRatioConstraint")
  86. UIAspectRatioConstraint3.Parent = ItemButton
  87. local Corner1 = Instance.new("UICorner")
  88. Corner1.Parent = ItemButton
  89. Corner1.CornerRadius = UDim.new(1, 1)
  90.  
  91. local ThemeButton = Instance.new("ImageButton")
  92. ThemeButton.BackgroundTransparency = 1
  93. ThemeButton.LayoutOrder = 3
  94. ThemeButton.Image = "rbxassetid://107425974390808"
  95. ThemeButton.Parent = List
  96. local UIAspectRatioConstraint3 = Instance.new("UIAspectRatioConstraint")
  97. UIAspectRatioConstraint3.Parent = ThemeButton
  98. local Corner1 = Instance.new("UICorner")
  99. Corner1.Parent = ThemeButton
  100. Corner1.CornerRadius = UDim.new(1, 1)
  101.  
  102. local backgroundGoal1 = {BackgroundColor3 = Color3.fromRGB(255, 255, 255)}
  103. local backgroundTween1 = TweenService:Create(MenuButton, TweenInfo.new(0.1), backgroundGoal1)
  104. local backgroundGoal2 = {BackgroundColor3 = Color3.fromRGB(0, 0, 0)}
  105. local backgroundTween2 = TweenService:Create(MenuButton, TweenInfo.new(0.1), backgroundGoal2)
  106.  
  107. local imageGoal1 = {ImageColor3 = Color3.fromRGB(0, 0, 0)}
  108. local imageTween1 = TweenService:Create(MenuButtonImage, TweenInfo.new(0.5), imageGoal1)
  109. local imageGoal2 = {ImageColor3 = Color3.fromRGB(255, 255, 255)}
  110. local imageTween2 = TweenService:Create(MenuButtonImage, TweenInfo.new(0.5), imageGoal2)
  111.  
  112. local listGoalOpen = {Size = UDim2.new(1, 0, 3.5, 0)}
  113. local listTweenOpen = TweenService:Create(List, TweenInfo.new(0.5), listGoalOpen)
  114. local listGoalClose = {Size = UDim2.new(1, 0, 0, 0)}
  115. local listTweenClose = TweenService:Create(List, TweenInfo.new(0.5), listGoalClose)
  116.  
  117. local transparencyGoalVisible = {ImageTransparency = 0}
  118. local transparencyGoalHidden = {ImageTransparency = 1}
  119. local modeTweenVisible = TweenService:Create(ModeButton, TweenInfo.new(0.2), transparencyGoalVisible)
  120. local itemTweenVisible = TweenService:Create(ItemButton, TweenInfo.new(0.2), transparencyGoalVisible)
  121. local ThemeTweenVisible = TweenService:Create(ThemeButton, TweenInfo.new(0.2), transparencyGoalVisible)
  122. local modeTweenHidden = TweenService:Create(ModeButton, TweenInfo.new(0.2), transparencyGoalHidden)
  123. local itemTweenHidden = TweenService:Create(ItemButton, TweenInfo.new(0.2), transparencyGoalHidden)
  124. local ThemeTweenHidden = TweenService:Create(ThemeButton, TweenInfo.new(0.2), transparencyGoalHidden)
  125.  
  126. local modeImageGoal1 = {ImageColor3 = Color3.fromRGB(0, 0, 0)}
  127. local modeBackgroundGoal1 = {BackgroundTransparency = 0}
  128. local modeImageTween1 = TweenService:Create(ModeButton, TweenInfo.new(0.2), modeImageGoal1)
  129. local modeBackgroundTween1 = TweenService:Create(ModeButton, TweenInfo.new(0.2), modeBackgroundGoal1)
  130. local modeImageGoal2 = {ImageColor3 = Color3.fromRGB(255, 255, 255)}
  131. local modeBackgroundGoal2 = {BackgroundTransparency = 1}
  132. local modeImageTween2 = TweenService:Create(ModeButton, TweenInfo.new(0.2), modeImageGoal2)
  133. local modeBackgroundTween2 = TweenService:Create(ModeButton, TweenInfo.new(0.2), modeBackgroundGoal2)
  134.  
  135. local itemImageGoal1 = {ImageColor3 = Color3.fromRGB(0, 0, 0)}
  136. local itemBackgroundGoal1 = {BackgroundTransparency = 0}
  137. local itemImageTween1 = TweenService:Create(ItemButton, TweenInfo.new(0.2), itemImageGoal1)
  138. local itemBackgroundTween1 = TweenService:Create(ItemButton, TweenInfo.new(0.2), itemBackgroundGoal1)
  139. local itemImageGoal2 = {ImageColor3 = Color3.fromRGB(255, 255, 255)}
  140. local itemBackgroundGoal2 = {BackgroundTransparency = 1}
  141. local itemImageTween2 = TweenService:Create(ItemButton, TweenInfo.new(0.2), itemImageGoal2)
  142. local itemBackgroundTween2 = TweenService:Create(ItemButton, TweenInfo.new(0.2), itemBackgroundGoal2)
  143.  
  144. local placeImageGoal1 = {ImageColor3 = Color3.fromRGB(0, 0, 0)}
  145. local placeBackgroundGoal1 = {BackgroundTransparency = 0}
  146. local ThemeImageTween1 = TweenService:Create(ThemeButton, TweenInfo.new(0.2), placeImageGoal1)
  147. local ThemeBackgroundTween1 = TweenService:Create(ThemeButton, TweenInfo.new(0.2), placeBackgroundGoal1)
  148. local ThemeImageGoal2 = {ImageColor3 = Color3.fromRGB(255, 255, 255)}
  149. local ThemeBackgroundGoal2 = {BackgroundTransparency = 1}
  150. local ThemeImageTween2 = TweenService:Create(ThemeButton, TweenInfo.new(0.2), ThemeImageGoal2)
  151. local ThemeBackgroundTween2 = TweenService:Create(ThemeButton, TweenInfo.new(0.2), ThemeBackgroundGoal2)
  152. local UserInputService = game:GetService("UserInputService")
  153. local GuiService = game:GetService("GuiService")
  154.  
  155. local function ToggleMenu()
  156. if Open == false then
  157. Open = true
  158. backgroundTween1:Play()
  159. imageTween1:Play()
  160. listTweenOpen:Play()
  161. modeTweenVisible:Play()
  162. itemTweenVisible:Play()
  163. ThemeTweenVisible:Play()
  164. if Mode then
  165. modeBackgroundTween1:Play()
  166. end
  167. if Item then
  168. itemBackgroundTween1:Play()
  169. end
  170. if Theme then
  171. ThemeBackgroundTween1:Play()
  172. end
  173. else
  174. Open = false
  175. Mode = false
  176. Item = false
  177. Theme = false
  178. MainUI.Visible = false
  179. ModeUI.Visible = false
  180. ItemUI.Visible = false
  181. ThemeUI.Visible = false
  182. backgroundTween2:Play()
  183. imageTween2:Play()
  184. listTweenClose:Play()
  185. modeTweenHidden:Play()
  186. itemTweenHidden:Play()
  187. ThemeTweenHidden:Play()
  188. modeBackgroundTween2:Play()
  189. itemBackgroundTween2:Play()
  190. ThemeBackgroundTween2:Play()
  191.  
  192. itemImageTween2:Play()
  193. itemBackgroundTween2:Play()
  194.  
  195. modeImageTween2:Play()
  196. modeBackgroundTween2:Play()
  197.  
  198. ThemeImageTween2:Play()
  199. ThemeBackgroundTween2:Play()
  200. end
  201. end
  202.  
  203. ModeButton.MouseButton1Click:Connect(function()
  204. if Mode == false then
  205. MainUI.Visible = true
  206. ModeUI.Visible = true
  207. ItemUI.Visible = false
  208. ThemeUI.Visible = false
  209. Mode = true
  210. Item = false
  211. Theme = false
  212. itemImageTween2:Play()
  213. itemBackgroundTween2:Play()
  214. ThemeImageTween2:Play()
  215. ThemeBackgroundTween2:Play()
  216. modeImageTween1:Play()
  217. modeBackgroundTween1:Play()
  218. else
  219. MainUI.Visible = false
  220. ModeUI.Visible = false
  221. ItemUI.Visible = false
  222. ThemeUI.Visible = false
  223. Mode = false
  224. modeImageTween2:Play()
  225. modeBackgroundTween2:Play()
  226. end
  227. end)
  228.  
  229. ItemButton.MouseButton1Click:Connect(function()
  230. if Item == false then
  231. Item = true
  232. Mode = false
  233. Theme = false
  234. MainUI.Visible = true
  235. ModeUI.Visible = false
  236. ItemUI.Visible = true
  237. ThemeUI.Visible = false
  238. modeImageTween2:Play()
  239. modeBackgroundTween2:Play()
  240. ThemeImageTween2:Play()
  241. ThemeBackgroundTween2:Play()
  242. itemImageTween1:Play()
  243. itemBackgroundTween1:Play()
  244. else
  245. MainUI.Visible = false
  246. ModeUI.Visible = false
  247. ItemUI.Visible = false
  248. ThemeUI.Visible = false
  249. Item = false
  250. itemImageTween2:Play()
  251. itemBackgroundTween2:Play()
  252. end
  253. end)
  254.  
  255. ThemeButton.MouseButton1Click:Connect(function()
  256. if Theme == false then
  257. Theme = true
  258. Mode = false
  259. Item = false
  260. MainUI.Visible = true
  261. ModeUI.Visible = false
  262. ItemUI.Visible = false
  263. ThemeUI.Visible = true
  264. modeImageTween2:Play()
  265. modeBackgroundTween2:Play()
  266. itemImageTween2:Play()
  267. itemBackgroundTween2:Play()
  268. ThemeImageTween1:Play()
  269. ThemeBackgroundTween1:Play()
  270. else
  271. Theme = false
  272. MainUI.Visible = false
  273. ModeUI.Visible = false
  274. ItemUI.Visible = false
  275. ThemeUI.Visible = false
  276. ThemeImageTween2:Play()
  277. ThemeBackgroundTween2:Play()
  278. end
  279. end)
  280. local KeyCode = Enum.KeyCode.N
  281. MenuButton.MouseButton1Click:Connect(function()
  282. ToggleMenu()
  283. end)
  284.  
  285. UserInputService.InputBegan:Connect(function(input, gameProcessed)
  286. if input.KeyCode == KeyCode and not gameProcessed then
  287. ToggleMenu()
  288. end
  289. end)
  290. --设置
  291. local UserInputService = game:GetService("UserInputService")
  292. local TweenService = game:GetService("TweenService")
  293.  
  294. local Expand = false
  295. local MainUI = game.Players.LocalPlayer.PlayerGui.MainUI.Settings
  296. local Original = MainUI.List
  297. local Feature = Instance.new("Frame")
  298.  
  299. local ScrollingFrame1 = Instance.new("ScrollingFrame")
  300.  
  301. local UIListLayout1 = Instance.new("UIListLayout")
  302. local UIListLayout2 = Instance.new("UIListLayout")
  303. local UIListLayout3 = Instance.new("UIListLayout")
  304.  
  305. local GameButton = Instance.new("ImageButton")
  306. local ScriptButton = Instance.new("ImageButton")
  307.  
  308. local UIAspectRatioConstraint1 = Instance.new("UIAspectRatioConstraint")
  309. local UIAspectRatioConstraint2 = Instance.new("UIAspectRatioConstraint")
  310. local UIAspectRatioConstraint3 = Instance.new("UIAspectRatioConstraint")
  311. local UIAspectRatioConstraint4 = Instance.new("UIAspectRatioConstraint")
  312.  
  313. local UICorner1 = Instance.new("UICorner")
  314. local UICorner2 = Instance.new("UICorner")
  315. local UICorner3 = Instance.new("UICorner")
  316. local UICorner4 = Instance.new("UICorner")
  317. local UICorner5 = Instance.new("UICorner")
  318. local UICorner6 = Instance.new("UICorner")
  319. local UICorner7 = Instance.new("UICorner")
  320. local UICorner8 = Instance.new("UICorner")
  321. local UICorner9 = Instance.new("UICorner")
  322. local UICorner10 = Instance.new("UICorner")
  323. local UICorner11 = Instance.new("UICorner")
  324. local UICorner12 = Instance.new("UICorner")
  325.  
  326. local ImageLabel1 = Instance.new("ImageLabel")
  327. local ImageButton1 = Instance.new("ImageButton")
  328.  
  329. local UIStroke1 = Instance.new("UIStroke")
  330. local UIStroke2 = Instance.new("UIStroke")
  331. local UIStroke3 = Instance.new("UIStroke")
  332. local UIStroke4 = Instance.new("UIStroke")
  333.  
  334. local UIGradient1 = Instance.new("UIGradient")
  335.  
  336. local Settings = Instance.new("Frame")
  337.  
  338. local Separator = Instance.new("TextLabel")
  339. local Language = Instance.new("TextButton")
  340. local Toggle = Instance.new("TextLabel")
  341.  
  342. local UIPadding1 = Instance.new("UIPadding")
  343. local UIPadding2 = Instance.new("UIPadding")
  344. local UIPadding3 = Instance.new("UIPadding")
  345. local UIPadding4 = Instance.new("UIPadding")
  346.  
  347. local TextBox1 = Instance.new("TextBox")
  348. local TextLabel1 = Instance.new("TextLabel")
  349.  
  350. local ENUS = Instance.new("TextButton")
  351. local ZHCN = Instance.new("TextButton")
  352. local ZHTW = Instance.new("TextButton")
  353. local JAJP = Instance.new("TextButton")
  354.  
  355. Feature.Parent = MainUI
  356. Feature.Name = "Feature"
  357. Feature.BackgroundTransparency = 1
  358. Feature.Position = UDim2.new(-0.22, 0, 0, 0)
  359. Feature.Size = UDim2.new(0.176, 0, 1, 0)
  360. UIListLayout1.Padding = UDim.new(0, 10)
  361. UIListLayout1.Parent = Feature
  362. GameButton.BackgroundTransparency = 0.1
  363. GameButton.Position = UDim2.new(1.064, 0, 0.152, 0)
  364. GameButton.Size = UDim2.new(1.064, 0, 0.152, 0)
  365. GameButton.Image = "rbxassetid://94786187453458"
  366. GameButton.Name = "Game"
  367. GameButton.BackgroundColor3 = Color3.fromRGB(30, 17, 16)
  368. GameButton.ImageColor3 = Color3.fromRGB(255, 222, 189)
  369. GameButton.Parent = Feature
  370. GameButton.ZIndex = 2150
  371. UIAspectRatioConstraint1.Parent = GameButton
  372. UICorner1.CornerRadius = UDim.new(0, 8)
  373. UICorner1.Parent = GameButton
  374. UIStroke1.Color = Color3.fromRGB(255, 222, 189)
  375. UIStroke1.Parent = GameButton
  376. ScriptButton.BackgroundTransparency = 0.1
  377. ScriptButton.Position = UDim2.new(1.064, 0, 0.152, 0)
  378. ScriptButton.Size = UDim2.new(1.064, 0, 0.152, 0)
  379. ScriptButton.Image = "rbxassetid://106301167631445"
  380. ScriptButton.Name = "Script"
  381. ScriptButton.BackgroundColor3 = Color3.fromRGB(30, 17, 16)
  382. ScriptButton.Parent = Feature
  383. ScriptButton.ZIndex = 2150
  384. UIAspectRatioConstraint2.Parent = ScriptButton
  385. UICorner2.CornerRadius = UDim.new(0, 8)
  386. UICorner2.Parent = ScriptButton
  387. UIStroke2.Color = Color3.fromRGB(255, 222, 189)
  388. UIStroke2.Parent = ScriptButton
  389. UIGradient1.Color = ColorSequence.new({ColorSequenceKeypoint.new(0, Color3.fromRGB(255, 0, 0)),ColorSequenceKeypoint.new(1, Color3.fromRGB(255, 255, 255))})
  390. UIGradient1.Rotation = 270
  391. UIGradient1.Parent = ScriptButton
  392. Settings.AnchorPoint = Vector2.new(0.5, 1)
  393. Settings.BackgroundTransparency = 1
  394. Settings.Position = UDim2.new(0.5, 0, 1, 0)
  395. Settings.Size = UDim2.new(1, 0, 0.85, 0)
  396. Settings.Name = "ScriptsMode"
  397. Settings.Parent = MainUI
  398. Settings.Visible = false
  399. UIListLayout2.Padding = UDim.new(0.01, 0)
  400. UIListLayout2.Parent = Settings
  401. UIListLayout2.SortOrder = Enum.SortOrder.LayoutOrder
  402. Separator.BackgroundTransparency = 0.7
  403. Separator.BackgroundColor3 = Color3.fromRGB(124, 82, 73)
  404. Separator.LayoutOrder = 1
  405. Separator.Size = UDim2.new(1, 0, 0.1, 2)
  406. Separator.ZIndex = 2205
  407. Separator.Font = Enum.Font.Oswald
  408. Separator.Text = "<b>MISC</b>"
  409. Separator.RichText = true
  410. Separator.Name = "Separator"
  411. Separator.TextColor3 = Color3.fromRGB(255, 222, 189)
  412. Separator.TextScaled = true
  413. Separator.TextXAlignment = Enum.TextXAlignment.Left
  414. Separator.TextYAlignment = Enum.TextYAlignment.Top
  415. Separator.Parent = Settings
  416. UICorner3.CornerRadius = UDim.new(0.2, 0)
  417. UIPadding1.PaddingBottom = UDim.new(0.2, -6)
  418. UIPadding1.PaddingLeft = UDim.new(0.03, 0)
  419. UIPadding1.PaddingRight = UDim.new(0.03, 0)
  420. UIPadding1.PaddingTop = UDim.new(0.2, -6)
  421. UIPadding1.Parent = Separator
  422. Language.BackgroundTransparency = 1
  423. Language.LayoutOrder = 3
  424. Language.Size = UDim2.new(1, 0, 0.105, 0)
  425. Language.ZIndex = 2310
  426. Language.Font = Enum.Font.Oswald
  427. Language.LineHeight = 1.04
  428. Language.Text = "<b>Language</b>"
  429. Language.Name = "Language"
  430. Language.RichText = true
  431. Language.TextColor3 = Color3.fromRGB(255, 222, 189)
  432. Language.TextScaled = true
  433. Language.TextXAlignment = Enum.TextXAlignment.Left
  434. Language.Parent = Settings
  435. Toggle.BackgroundColor3 = Color3.fromRGB(204, 147, 121)
  436. Toggle.BackgroundTransparency = 0.9
  437. Toggle.AnchorPoint = Vector2.new(1, 0.5)
  438. Toggle.Position = UDim2.new(1.27, 0, 0.589, 0)
  439. Toggle.Size = UDim2.new(1.92, 0, 0.8, 0)
  440. Toggle.SizeConstraint = Enum.SizeConstraint.RelativeYY
  441. Toggle.Text = ""
  442. Toggle.Name = "Toggle"
  443. Toggle.ZIndex = 2310
  444. Toggle.Parent = Language
  445. UIPadding2.PaddingBottom = UDim.new(0, 0)
  446. UIPadding2.PaddingLeft = UDim.new(0.05, 0)
  447. UIPadding2.PaddingRight = UDim.new(0.22, 0)
  448. UIPadding2.PaddingTop = UDim.new(0, 0)
  449. UIPadding2.Parent = Language
  450. UICorner4.CornerRadius = UDim.new(1, 0)
  451. UICorner4.Parent = Language
  452. ImageButton1.BackgroundColor3 = Color3.fromRGB(255, 222, 189)
  453. ImageButton1.Position = UDim2.new(-0.425, 0, 0, 0)
  454. ImageButton1.Size = UDim2.new(1, 0, 1, 0)
  455. ImageButton1.ZIndex = 2310
  456. ImageButton1.Name = "Fream"
  457. ImageButton1.Parent = Toggle
  458. ImageButton1.Image = ""
  459. ImageLabel1.AnchorPoint = Vector2.new(0.5, 0.5)
  460. ImageLabel1.Size = UDim2.new(0.5, 0, 0.5, 0)
  461. ImageLabel1.Position = UDim2.new(0.5, 0, 0.5, 0)
  462. ImageLabel1.BackgroundTransparency = 1
  463. ImageLabel1.ZIndex = 2310
  464. ImageLabel1.Parent = ImageButton1
  465. ImageLabel1.Name = "Expand"
  466. ImageLabel1.Image = "rbxassetid://87702149708209"
  467. ImageLabel1.ImageColor3 = Color3.fromRGB(0, 0, 0)
  468. ScrollingFrame1.BackgroundTransparency = 1
  469. ScrollingFrame1.Position = UDim2.new(0, 0, 1, 0)
  470. ScrollingFrame1.Size = UDim2.new(1, 0, 5, 0)
  471. ScrollingFrame1.ZIndex = 2302
  472. ScrollingFrame1.ScrollBarThickness = 0
  473. ScrollingFrame1.ScrollingDirection = Enum.ScrollingDirection.Y
  474. ScrollingFrame1.Parent = Toggle
  475. ScrollingFrame1.Name = "Language"
  476. ScrollingFrame1.Visible = false
  477. TextLabel1.BackgroundTransparency = 1
  478. TextLabel1.Size = UDim2.new(1, 0, 1, 0)
  479. TextLabel1.ZIndex = 2302
  480. TextLabel1.Font = Enum.Font.Oswald
  481. TextLabel1.Text = "<b>EN_US</b>"
  482. TextLabel1.TextColor3 = Color3.fromRGB(255, 222, 189)
  483. TextLabel1.TextScaled = true
  484. TextLabel1.RichText = true
  485. TextLabel1.Parent = Toggle
  486. TextLabel1.Name = "LanguageText"
  487. UICorner6.CornerRadius = UDim.new(1, 0)
  488. UICorner6.Parent = Toggle
  489. UIStroke3.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
  490. UIStroke3.Color = Color3.fromRGB(255, 222, 189)
  491. UIStroke3.Thickness = 3
  492. UIStroke3.Parent = Toggle
  493. UIAspectRatioConstraint3.Parent = ImageButton1
  494. UICorner5.CornerRadius = UDim.new(1, 0)
  495. UICorner5.Parent = ImageButton1
  496. UIAspectRatioConstraint4.Parent = ImageLabel1
  497. UIListLayout3.Parent = ScrollingFrame1
  498. UIListLayout3.Padding = UDim.new(0.01, 0)
  499. UIListLayout3.HorizontalAlignment = Enum.HorizontalAlignment.Right
  500. local uiCorner1 = Instance.new("UICorner")
  501. local uiCorner2 = Instance.new("UICorner")
  502. local uiCorner3 = Instance.new("UICorner")
  503. local uiCorner4 = Instance.new("UICorner")
  504. ENUS.Size = UDim2.new(1, 0, 0.212, 0)
  505. ENUS.Position = UDim2.new(0, 0, 0, 25)
  506. ENUS.Parent = ScrollingFrame1
  507. ENUS.BackgroundColor3 = Color3.fromRGB(155, 135, 115)
  508. ENUS.Font = Enum.Font.Oswald
  509. ENUS.TextScaled = true
  510. ENUS.LayoutOrder = 1
  511. ENUS.Text = "<b>EN_US</b>"
  512. ENUS.RichText = true
  513. ENUS.ZIndex = 2302
  514. uiCorner1.Parent = ENUS
  515. uiCorner1.CornerRadius = UDim.new(1, 0)
  516.  
  517. ZHCN.Size = UDim2.new(1, 0, 0.212, 0)
  518. ZHCN.Position = UDim2.new(0, 0, 0, 25)
  519. ZHCN.Parent = ScrollingFrame1
  520. ZHCN.BackgroundColor3 = Color3.fromRGB(255, 222, 189)
  521. ZHCN.Font = Enum.Font.Oswald
  522. ZHCN.TextScaled = true
  523. ZHCN.Text = "<b>ZH_CN</b>"
  524. ZHCN.RichText = true
  525. ZHCN.LayoutOrder = 2
  526. ZHCN.ZIndex = 2302
  527. uiCorner2.Parent = ZHCN
  528. uiCorner2.CornerRadius = UDim.new(1, 0)
  529. JAJP.Size = UDim2.new(1, 0, 0.212, 0)
  530. JAJP.Position = UDim2.new(0, 0, 0, 25)
  531. JAJP.Parent = ScrollingFrame1
  532. JAJP.BackgroundColor3 = Color3.fromRGB(255, 222, 189)
  533. JAJP.Font = Enum.Font.Oswald
  534. JAJP.TextScaled = true
  535. JAJP.Text = "<b>JA_JP</b>"
  536. JAJP.RichText = true
  537. JAJP.LayoutOrder = 4
  538. JAJP.ZIndex = 2302
  539. uiCorner3.Parent = JAJP
  540. uiCorner3.CornerRadius = UDim.new(1, 0)
  541.  
  542. ZHTW.Size = UDim2.new(1, 0, 0.212, 0)
  543. ZHTW.Position = UDim2.new(0, 0, 0, 25)
  544. ZHTW.Parent = ScrollingFrame1
  545. ZHTW.BackgroundColor3 = Color3.fromRGB(255, 222, 189)
  546. ZHTW.Font = Enum.Font.Oswald
  547. ZHTW.TextScaled = true
  548. ZHTW.Text = "<b>ZH_TW</b>"
  549. ZHTW.RichText = true
  550. ZHTW.LayoutOrder = 3
  551. ZHTW.ZIndex = 2302
  552. uiCorner4.Parent = ZHTW
  553. uiCorner4.CornerRadius = UDim.new(1, 0)
  554. ImageButton1.MouseButton1Click:Connect(function()
  555. if Expand == false then
  556. ImageLabel1.Rotation = 180
  557. ScrollingFrame1.Visible = true
  558. Expand = true
  559. else
  560. ImageLabel1.Rotation = 0
  561. ScrollingFrame1.Visible = false
  562. Expand = false
  563. end
  564. end)
  565. GameButton.MouseButton1Click:Connect(function()
  566. Original.Visible = true
  567. Settings.Visible = false
  568. end)
  569. ScriptButton.MouseButton1Click:Connect(function()
  570. Settings.Visible = true
  571. Original.Visible = false
  572. end)
  573. local function inputFilter(input)
  574. local restrictedChars = " �"
  575. local filteredInput = input:gsub(restrictedChars, "")
  576. return filteredInput:sub(1, 1)
  577. end
  578.  
  579. TextBox1.Changed:Connect(function()
  580. local input = TextBox1.Text
  581. local filteredInput = inputFilter(input)
  582. TextBox1.Text = filteredInput
  583. end)
  584. local ScriptsMode = game.Players.LocalPlayer.PlayerGui.Sciptmode.Main
  585. local Modifier = ScriptsMode.Modifier
  586. local Extra = ScriptsMode.Extra
  587. local List = Modifier.List
  588. local Settings = Modifier.Preview
  589.  
  590. local ModePreview = {Desc = List.Mode.Preview.Desc, Title = List.Mode.Preview.Title}
  591. local ItemPreview = {Desc = List.Item.Preview.Desc, Title = List.Item.Preview.Title}
  592. local ThemePreview = {Desc = List.Theme.Preview.Desc, Title = List.Theme.Preview.Title}
  593.  
  594. local SettingsMode = {
  595. Title = Settings.Preview.Mode.Title,
  596. Continue = Settings.Continue,
  597. Executor = Settings.Preview.Mode.Status.Executor,
  598. Floor = Settings.Preview.Mode.Status.Floor
  599. }
  600. local CustEntTitle = Extra.CustEnt.Title
  601. local Entity = {
  602. Asset = Extra.CustEnt.Select.Rush.Entity.Asset.ActionName,
  603. EntityName = Extra.CustEnt.Select.Rush.Entity.EntityName.ActionName,
  604. HeightOffset = Extra.CustEnt.Select.Rush.Entity.HeightOffset.ActionName,
  605. SettingHeader = Extra.CustEnt.Select.Rush.Entity.SettingHeader.Title
  606. }
  607.  
  608. local Lights = {
  609. Duration = Extra.CustEnt.Select.Rush.Lights.Duration.ActionName,
  610. Earthquake = Extra.CustEnt.Select.Rush.Lights.Earthquake.ActionName,
  611. Enabled = Extra.CustEnt.Select.Rush.Lights.Enabled.ActionName,
  612. Repair = Extra.CustEnt.Select.Rush.Lights.Repair.ActionName,
  613. Shatter = Extra.CustEnt.Select.Rush.Lights.Shatter.ActionName,
  614. SettingHeader = Extra.CustEnt.Select.Rush.Lights.SettingHeader.Title
  615. }
  616.  
  617. local CameraShake = {
  618. Enabled = Extra.CustEnt.Select.Rush.CameraShake.Enabled.ActionName,
  619. FadeIn = Extra.CustEnt.Select.Rush.CameraShake.FadeIn.ActionName,
  620. FadeOut = Extra.CustEnt.Select.Rush.CameraShake.FadeOut.ActionName,
  621. Magnitude = Extra.CustEnt.Select.Rush.CameraShake.Magnitude.ActionName,
  622. Range = Extra.CustEnt.Select.Rush.CameraShake.Range.ActionName,
  623. Roughness = Extra.CustEnt.Select.Rush.CameraShake.Roughness.ActionName,
  624. SettingHeader = Extra.CustEnt.Select.Rush.CameraShake.SettingHeader.Title
  625. }
  626.  
  627. local Rebounding = {
  628. Delay = Extra.CustEnt.Select.Rush.Rebounding.Delay.ActionName,
  629. Enabled = Extra.CustEnt.Select.Rush.Rebounding.Enabled.ActionName,
  630. Max = Extra.CustEnt.Select.Rush.Rebounding.Max.ActionName,
  631. Min = Extra.CustEnt.Select.Rush.Rebounding.Min.ActionName,
  632. Type = Extra.CustEnt.Select.Rush.Rebounding.Type.ActionName,
  633. SettingHeader = Extra.CustEnt.Select.Rush.Rebounding.SettingHeader.Title
  634. }
  635.  
  636. local Movement = {
  637. Delay = Extra.CustEnt.Select.Rush.Movement.Delay.ActionName,
  638. Reversed = Extra.CustEnt.Select.Rush.Movement.Reversed.ActionName,
  639. Speed = Extra.CustEnt.Select.Rush.Movement.Speed.ActionName,
  640. SettingHeader = Extra.CustEnt.Select.Rush.Movement.SettingHeader.Title
  641. }
  642.  
  643. local Damage = {
  644. Amount = Extra.CustEnt.Select.Rush.Damage.Amount.ActionName,
  645. Enabled = Extra.CustEnt.Select.Rush.Damage.Enabled.ActionName,
  646. Range = Extra.CustEnt.Select.Rush.Damage.Range.ActionName,
  647. SettingHeader = Extra.CustEnt.Select.Rush.Damage.SettingHeader.Title
  648. }
  649.  
  650. local Death = {
  651. Cause = Extra.CustEnt.Select.Rush.Death.Cause.ActionName,
  652. Hints = Extra.CustEnt.Select.Rush.Death.Hints.ActionName,
  653. Type = Extra.CustEnt.Select.Rush.Death.Type.ActionName,
  654. SettingHeader = Extra.CustEnt.Select.Rush.Death.SettingHeader.Title
  655. }
  656.  
  657. local Crucifixion = {
  658. Break = Extra.CustEnt.Select.Rush.Crucifixion.Break.ActionName,
  659. Enabled = Extra.CustEnt.Select.Rush.Crucifixion.Enabled.ActionName,
  660. Range = Extra.CustEnt.Select.Rush.Crucifixion.Range.ActionName,
  661. Resist = Extra.CustEnt.Select.Rush.Crucifixion.Resist.ActionName,
  662. SettingHeader = Extra.CustEnt.Select.Rush.Crucifixion.SettingHeader.Title
  663. }
  664.  
  665. local CustEntbutton = {Execute = Extra.CustEnt.Select.Rush.Button.Execute, GetCode = Extra.CustEnt.Select.Rush.Button.GetCode}
  666. local CreditsMode = Extra.Credits.ScrollingFrame.Mode.Title
  667. local Credits = {
  668. Credits1 = Extra.Credits.ScrollingFrame.Scrtpt.Scrtpt["Script Owner"].ScriptOwner,
  669. Credits2 = Extra.Credits.ScrollingFrame.Scrtpt.Scrtpt["Script Helper"].ScriptHelper
  670. }
  671.  
  672. local tweenInfo = TweenInfo.new(0.2, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
  673.  
  674. local function setActiveButton(activeButton, otherButtons)
  675. activeButton.BackgroundColor3 = Color3.fromRGB(155, 135, 115)
  676. for _, button in ipairs(otherButtons) do
  677. button.BackgroundColor3 = Color3.fromRGB(255, 222, 189)
  678. end
  679. end
  680.  
  681. local function ENUSButton()
  682. setActiveButton(ENUS, {ZHCN, JAJP, ZHTW})
  683. ModePreview.Desc.Text = "Make the game harder!"
  684. ModePreview.Title.Text = "Mode"
  685. ItemPreview.Title.Text = "Item"
  686. ItemPreview.Desc.Text = "Make your game easier!"
  687. ThemePreview.Title.Text = "Change the game theme!"
  688. ThemePreview.Desc.Text = "Theme"
  689. CustEntTitle.Text = "Custom Entity Spawner"
  690. if SettingsMode.Title.Text == "Unselected" or "未选中" or "未選択" or "未選中" then
  691. SettingsMode.Title.Text = "Unselected"
  692. end
  693. SettingsMode.Continue.Text = "Execute"
  694. SettingsMode.Executor = "Executor:" .. identifyexecutor()
  695. Entity.Asset.Text = "Model"
  696. Entity.EntityName.Text = "Name"
  697. Entity.HeightOffset.Text = "HeightOffset"
  698. Entity.SettingHeader.Text = "Entity"
  699. Lights.Duration.Text = "Duration"
  700. Lights.Earthquake.Text = "Earthquake"
  701. Lights.Enabled.Text = "Enabled"
  702. Lights.Repair.Text = "Repair"
  703. Lights.Shatter.Text = "Shatter"
  704. Lights.SettingHeader.Text = "Lights"
  705. CameraShake.Enabled.Text = "Enabled"
  706. CameraShake.Range.Text = "Range"
  707. CameraShake.FadeIn.Text = "FadeIn"
  708. CameraShake.FadeOut.Text = "FadeOut"
  709. CameraShake.Magnitude.Text = "Magnitude"
  710. CameraShake.Roughness.Text = "Roughness"
  711. CameraShake.SettingHeader.Text = "SettingHeader"
  712. Rebounding.Delay.Text = "Delay"
  713. Rebounding.Enabled.Text = "Enabled"
  714. Rebounding.Max.Text = "Max"
  715. Rebounding.Min.Text = "Min"
  716. Rebounding.Type.Text = "Type"
  717. Rebounding.SettingHeader.Text = "Rebounding"
  718. Movement.Delay.Text = "Delay"
  719. Movement.Reversed.Text = "Reversed"
  720. Movement.Speed.Text = "Speed"
  721. Movement.SettingHeader.Text = "CameraShake"
  722. Damage.Amount.Text = "Amount"
  723. Damage.Enabled.Text = "Enabled"
  724. Damage.Range.Text = "Range"
  725. Damage.SettingHeader.Text = "Damage"
  726. Death.Cause.Text = "Cause"
  727. Death.Hints.Text = "Hints"
  728. Death.Type.Text = "Type"
  729. Death.SettingHeader.Text = "Death"
  730. Crucifixion.Break.Text = "Break"
  731. Crucifixion.Enabled.Text = "Enabled"
  732. Crucifixion.Range.Text = "Range"
  733. Crucifixion.Resist.Text = "Resist"
  734. Crucifixion.SettingHeader.Text = "Crucifixion"
  735. CustEntbutton.GetCode.Text = "GetCode"
  736. CustEntbutton.Execute.Text = "Execute"
  737. Credits.Credits1.Text = "Script Owner"
  738. Credits.Credits2.Text = "Script Helper"
  739. CreditsMode.Text = "Mode/Item/Theme/And More"
  740. TextLabel1.Text = "<b>ENUS</b>"
  741. end
  742.  
  743. local function ZHCNButton()
  744. setActiveButton(ZHCN, {ENUS, JAJP, ZHTW})
  745. ModePreview.Desc.Text = "困难重重!"
  746. ModePreview.Title.Text = "模式"
  747. ItemPreview.Title.Text = "物品"
  748. ItemPreview.Desc.Text = "轻松自在!"
  749. ThemePreview.Title.Text = "更换主题!"
  750. ThemePreview.Desc.Text = "主题"
  751. SettingsMode.Executor = "注入器:" .. identifyexecutor()
  752. CustEntTitle.Text = "自定义实体生成器"
  753. if SettingsMode.Title.Text == "Unselected" or "未选中" or "未選択" or "未選中" then
  754. SettingsMode.Title.Text = "未选中"
  755. end
  756. SettingsMode.Continue.Text = "执行"
  757. Entity.Asset.Text = "模型"
  758. Entity.EntityName.Text = "名称"
  759. Entity.HeightOffset.Text = "高度偏移"
  760. Entity.SettingHeader.Text = "实体"
  761. Lights.Duration.Text = "持续"
  762. Lights.Earthquake.Text = "地震"
  763. Lights.Enabled.Text = "启用"
  764. Lights.Repair.Text = "恢复"
  765. Lights.Shatter.Text = "闪灯"
  766. Lights.SettingHeader.Text = "灯光"
  767. CameraShake.Enabled.Text = "启用"
  768. CameraShake.Range.Text = "范围"
  769. CameraShake.FadeIn.Text = "淡入"
  770. CameraShake.FadeOut.Text = "淡出"
  771. CameraShake.Magnitude.Text = "等级"
  772. CameraShake.Roughness.Text = "粗糙"
  773. CameraShake.SettingHeader.Text = "屏幕摇晃"
  774. Rebounding.Delay.Text = "延迟"
  775. Rebounding.Enabled.Text = "启用"
  776. Rebounding.Max.Text = "最大"
  777. Rebounding.Min.Text = "最小"
  778. Rebounding.Type.Text = "类型"
  779. Rebounding.SettingHeader.Text = "回弹"
  780. Movement.Delay.Text = "延迟"
  781. Movement.Reversed.Text = "逆行"
  782. Movement.Speed.Text = "速度"
  783. Movement.SettingHeader.Text = "移动"
  784. Damage.Amount.Text = "伤害值"
  785. Damage.Enabled.Text = "启用"
  786. Damage.Range.Text = "范围"
  787. Damage.SettingHeader.Text = "伤害"
  788. Death.Cause.Text = "原因"
  789. Death.Hints.Text = "提示"
  790. Death.Type.Text = "类型"
  791. Death.SettingHeader.Text = "死亡"
  792. Crucifixion.Break.Text = "破坏"
  793. Crucifixion.Enabled.Text = "启用"
  794. Crucifixion.Range.Text = "范围"
  795. Crucifixion.Resist.Text = "抵抗"
  796. Crucifixion.SettingHeader.Text = "封印"
  797. CustEntbutton.GetCode.Text = "获取脚本"
  798. CustEntbutton.Execute.Text = "执行"
  799. Credits.Credits1.Text = "脚本作者"
  800. Credits.Credits2.Text = "脚本辅助"
  801. CreditsMode.Text = "模式/物品/主题/和更多"
  802. TextLabel1.Text = "<b>ZHCN</b>"
  803. end
  804.  
  805. local function JAJPButton()
  806. setActiveButton(JAJP, {ENUS, ZHCN, ZHTW})
  807. ModePreview.Desc.Text = "ゲームを難しくする!"
  808. ModePreview.Title.Text = "モード"
  809. ItemPreview.Title.Text = "アイテム"
  810. ItemPreview.Desc.Text = "ゲームを簡単にする!"
  811. ThemePreview.Title.Text = "テーマの変更!"
  812. SettingsMode.Executor = "実行者:" .. identifyexecutor()
  813. ThemePreview.Desc.Text = "テーマ"
  814. CustEntTitle.Text = "カスタムエンティティスポナー"
  815. Entity.Asset.Text = "モデル"
  816. Entity.EntityName.Text = "名前"
  817. Entity.HeightOffset.Text = "高さオフセット"
  818. Entity.SettingHeader.Text = "エンティティ"
  819. Lights.Duration.Text = "期間"
  820. Lights.Earthquake.Text = "地震"
  821. Lights.Enabled.Text = "有効"
  822. Lights.Repair.Text = "修理"
  823. Lights.Shatter.Text = "粉々にする"
  824. Lights.SettingHeader.Text = "ライト"
  825. CameraShake.Enabled.Text = "有効"
  826. CameraShake.Range.Text = "範囲"
  827. CameraShake.FadeIn.Text = "フェードイン"
  828. CameraShake.FadeOut.Text = "フェードアウト"
  829. CameraShake.Magnitude.Text = "マグニチュード"
  830. CameraShake.Roughness.Text = "粗さ"
  831. CameraShake.SettingHeader.Text = "設定ヘッダー"
  832. Rebounding.Delay.Text = "遅延"
  833. Rebounding.Enabled.Text = "有効"
  834. Rebounding.Max.Text = "最大"
  835. Rebounding.Min.Text = "最小"
  836. Rebounding.Type.Text = "タイプ"
  837. Rebounding.SettingHeader.Text = "リバウンディング"
  838. Movement.Delay.Text = "遅延"
  839. Movement.Reversed.Text = "逆転"
  840. Movement.Speed.Text = "速度"
  841. Movement.SettingHeader.Text = "カメラシェイク"
  842. Damage.Amount.Text = "量"
  843. Damage.Enabled.Text = "有効"
  844. Damage.Range.Text = "範囲"
  845. Damage.SettingHeader.Text = "ダメージ"
  846. Death.Cause.Text = "原因"
  847. Death.Hints.Text = "ヒント"
  848. Death.Type.Text = "タイプ"
  849. Death.SettingHeader.Text = "デス"
  850. Crucifixion.Break.Text = "壊れる"
  851. Crucifixion.Enabled.Text = "有効"
  852. Crucifixion.Range.Text = "範囲"
  853. Crucifixion.Resist.Text = "抵抗"
  854. Crucifixion.SettingHeader.Text = "十字架刑"
  855. CustEntbutton.GetCode.Text = "コードを取得"
  856. CustEntbutton.Execute.Text = "実行"
  857. Credits.Credits1.Text = "スクリプトオーナー"
  858. Credits.Credits2.Text = "スクリプトヘルパー"
  859. CreditsMode.Text = "モード/アイテム/テーマ/その他"
  860. TextLabel1.Text = "<b>JAJP</b>"
  861. end
  862.  
  863. local function ZHTWButton()
  864. setActiveButton(ZHTW, {ENUS, ZHCN, JAJP})
  865. ModePreview.Desc.Text = "難上加難!"
  866. ModePreview.Title.Text = "模式"
  867. ItemPreview.Title.Text = "物品"
  868. ItemPreview.Desc.Text = "輕鬆自在!"
  869. ThemePreview.Title.Text = "變更主題!"
  870. ThemePreview.Desc.Text = "主題"
  871. Entity.SettingHeader.Text = "實體"
  872. CustEntTitle.Text = "自定義實體生成器"
  873. Entity.Asset.Text = "模型"
  874. Entity.EntityName.Text = "名稱"
  875. SettingsMode.Executor = "執行者:" .. identifyexecutor()
  876. Entity.HeightOffset.Text = "高度偏移"
  877. Lights.Duration.Text = "持續時間"
  878. Lights.Earthquake.Text = "地震"
  879. Lights.Enabled.Text = "啟用"
  880. Lights.Repair.Text = "修復"
  881. Lights.Shatter.Text = "破碎"
  882. Lights.SettingHeader.Text = "燈光"
  883. CameraShake.Enabled.Text = "啟用"
  884. CameraShake.Range.Text = "範圍"
  885. CameraShake.FadeIn.Text = "淡入"
  886. CameraShake.FadeOut.Text = "淡出"
  887. CameraShake.Magnitude.Text = "震級"
  888. CameraShake.Roughness.Text = "粗糙度"
  889. CameraShake.SettingHeader.Text = "設置標題"
  890. Rebounding.Delay.Text = "延遲"
  891. Rebounding.Enabled.Text = "啟用"
  892. Rebounding.Max.Text = "最大值"
  893. Rebounding.Min.Text = "最小值"
  894. Rebounding.Type.Text = "類型"
  895. Rebounding.SettingHeader.Text = "回彈"
  896. Movement.Delay.Text = "延遲"
  897. Movement.Reversed.Text = "逆向"
  898. Movement.Speed.Text = "速度"
  899. Movement.SettingHeader.Text = "運動"
  900. Damage.Amount.Text = "數量"
  901. Damage.Enabled.Text = "啟用"
  902. Damage.Range.Text = "範圍"
  903. Damage.SettingHeader.Text = "傷害"
  904. Death.Cause.Text = "原因"
  905. Death.Hints.Text = "提示"
  906. Death.Type.Text = "類型"
  907. Death.SettingHeader.Text = "死亡"
  908. Crucifixion.Break.Text = "破壞"
  909. Crucifixion.Enabled.Text = "啟用"
  910. Crucifixion.Range.Text = "範圍"
  911. Crucifixion.Resist.Text = "抵抗"
  912. Crucifixion.SettingHeader.Text = "釘十字架"
  913. CustEntbutton.GetCode.Text = "獲取代碼"
  914. CustEntbutton.Execute.Text = "執行"
  915. Credits.Credits1.Text = "腳本擁有者"
  916. Credits.Credits2.Text = "腳本助手"
  917. CreditsMode.Text = "模式/物品/主題/及更多"
  918. TextLabel1.Text = "<b>ZHTW</b>"
  919. end
  920.  
  921. ENUS.MouseButton1Click:Connect(ENUSButton)
  922. ZHCN.MouseButton1Click:Connect(ZHCNButton)
  923. JAJP.MouseButton1Click:Connect(JAJPButton)
  924. ZHTW.MouseButton1Click:Connect(ZHTWButton)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement