Advertisement
BOBBIEBOY

YES

Dec 16th, 2016
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.28 KB | None | 0 0
  1. --[[Works only with localscript:P!]]---
  2. -----------------------------------------------------
  3. local plyr = game.Players["coolmove66"]--[[YOUR NAME GOES THERE!!]]--
  4.  
  5. -----------------------------------------------------
  6.  
  7.  
  8. local bin = Instance.new("HopperBin",plyr.Backpack)
  9. bin.Name = "[Select]"
  10. follow_to = "peyquinn"
  11. script.Name = "[Source]"
  12. mode = "NO MODE SELECTED"
  13. --------------------------------------------------------------------
  14. commands = {"Open Slot[Q]","Close Slot[Q]","Follow[F]","Stop[F]","Open Help[E]","Close Help[E]","Chat[C]","Kill[K]","RemoveItem[R]","ForceField[M]","Explosive[X]","Slime[L]","GrabPlayer[Z]","Trip Mine[T]","Wood Brick[Y]","Pet Slime[G]"} --[[IF YOU'RE GOING TO MAKE YOUR OWN COMMANDS, PUT THEM IN HERE AFTER YOU HAVE SCRIPTED THEM(Advanced scripters only)]]--
  15. --------------------------------------------------------------------
  16. ballcolors = {"Bright red","Bright blue","Bright yellow","White","Lime green","Bright green","Bright orange"}
  17. chats = {"Hi I'm an orb!","How are you?","I SHALL SLIME ON YOU!","Telamon!","peyquinn rocks:3","I'm a beast bro!","lol","what's up?:P?",":D",":)","x3","XD",":("}
  18.  
  19. mshID = "http://www.roblox.com/asset/?id=18817409"
  20. txtID = "http://www.roblox.com/asset/?id=18817387"
  21. mshScale = Vector3.new(1.05, 1.05, 1.05)
  22.  
  23. ----------------------------------------------------
  24.  
  25. --[[TIME TO MAKE FUNCTION!]]--
  26.  
  27. local shootsound = Instance.new("Sound",script)
  28. shootsound.SoundId = "http://www.roblox.com/asset/?id=1369158"
  29. function startmnu()
  30. local starthelp = Instance.new("ScreenGui",plyr.PlayerGui)
  31. starthelp.Name = "Intro"
  32. local startframe = Instance.new("Frame",starthelp)
  33. startframe.Size = UDim2.new(1,0,0,80)
  34. startframe.Position = UDim2.new(-1,0,0,0)
  35. startframe.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  36. startframe.BorderColor3 = Color3.new(255/255,0/255,0/255)
  37. startframe.BackgroundTransparency = 0.3
  38. local starttext = Instance.new("TextLabel",startframe)
  39. starttext.Text = "!PLEASE CLICK 'E' KEY FOR HELP ON GUARD BOT!"
  40. starttext.Font = "ArialBold"
  41. starttext.FontSize = "Size36"
  42. starttext.Position = UDim2.new(0,550,0,40)
  43. starttext.TextColor3 = Color3.new(255/255,255/255,255/255)
  44. starttext.BackgroundTransparency = 1
  45. startframe:TweenPosition(UDim2.new(0,0,0,0))
  46. wait(4)
  47. startframe:TweenPosition(UDim2.new(1,0,0,0))
  48. wait(1)
  49. starthelp:Remove()
  50. end
  51. local gui = Instance.new("ScreenGui")
  52. gui.Name = "MainGui"
  53. local frame = Instance.new("Frame",gui)
  54. frame.Name = "MainFrame"
  55. frame.Size = UDim2.new(0,200,0,250)
  56. frame.Position = UDim2.new(0.4,0,0,-300)
  57. frame.BorderColor3 = Color3.new(255/255,0/255,0/255)
  58. frame.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  59. frame.BackgroundTransparency = 0.3
  60. local chtbox = Instance.new("TextBox",frame)
  61. chtbox.Name = "ChatBox"
  62. chtbox.Size = UDim2.new(0,200,0,50)
  63. chtbox.Position = UDim2.new(0,0,0,200)
  64. chtbox.Font = "ArialBold"
  65. chtbox.FontSize = "Size14"
  66. chtbox.TextColor3 = Color3.new(255/255,255/255,255/255)
  67. chtbox.TextStrokeColor3 = Color3.new(255/255,0/255,0/255)
  68. chtbox.TextStrokeTransparency = 0
  69. chtbox.BorderColor3 = Color3.new(255/255,0/255,0/255)
  70. chtbox.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  71. chtbox.Text = "Hello, this is where you put chat!"
  72. chtbox.Visible = false
  73. local txtbox = Instance.new("TextBox",frame)
  74. txtbox.Name = "peyquinn"
  75. txtbox.Size = UDim2.new(0,200,0,50)
  76. txtbox.Position = UDim2.new(0,0,0,100)
  77. txtbox.Font = "ArialBold"
  78. txtbox.FontSize = "Size14"
  79. txtbox.TextColor3 = Color3.new(255/255,255/255,255/255)
  80. txtbox.TextStrokeColor3 = Color3.new(255/255,0/255,0/255)
  81. txtbox.TextStrokeTransparency = 0
  82. txtbox.BorderColor3 = Color3.new(255/255,0/255,0/255)
  83. txtbox.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  84. txtbox.Text = "PlayerName"
  85. local modebox = Instance.new("TextLabel",frame)
  86. modebox.Name = "ModeBox"
  87. modebox.Size = UDim2.new(0,200,0,0)
  88. modebox.Position = UDim2.new(0,0,0,20)
  89. modebox.Font = "ArialBold"
  90. modebox.FontSize = "Size24"
  91. modebox.TextColor3 = Color3.new(0/255,0/255,0/255)
  92. modebox.TextStrokeColor3 = Color3.new(255/255,255/255,255/255)
  93. modebox.TextStrokeTransparency = 0
  94. modebox.Text = mode
  95. local slimeframe = Instance.new("Frame",gui)
  96. slimeframe.Name = "SlimeControls"
  97. slimeframe.Size = UDim2.new(0,250,0,325)
  98. slimeframe.Position = UDim2.new(0,0,0,-351)
  99. slimeframe.BorderColor3 = Color3.new(255/255,0/255,0/255)
  100. slimeframe.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  101. local title = Instance.new("TextLabel",slimeframe)
  102. title.TextStrokeColor3 = Color3.new(255/255,0/255,0/255)
  103. title.TextStrokeTransparency = 0
  104. title.TextColor3 = Color3.new(0/255,0/255,0/255)
  105. title.Font = "ArialBold"
  106. title.FontSize = "Size18"
  107. title.Text = "Slime Controller"
  108. title.Position = UDim2.new(0,125,0,15)
  109. local cb = Instance.new("TextButton",slimeframe)
  110. cb.Name = "ChatButton"
  111. cb.Size = UDim2.new(0,125,0,50)
  112. cb.Position = UDim2.new(0,0,0,25)
  113. cb.Style = "RobloxButtonDefault"
  114. cb.Font = "ArialBold"
  115. cb.FontSize = "Size18"
  116. cb.Text = "Chat!"
  117. cb.TextColor3 = Color3.new(255/255,255/255,255/255)
  118. local ct = Instance.new("TextBox",slimeframe)
  119. ct.Name = "ChatBox"
  120. ct.Size = UDim2.new(0,125,0,50)
  121. ct.Position = UDim2.new(0,125,0,25)
  122. ct.BorderColor3 = Color3.new(255/255,0/255,0/255)
  123. ct.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  124. ct.Font = "ArialBold"
  125. ct.FontSize = "Size18"
  126. ct.Text = "ChatGoesHere"
  127. ct.TextColor3 = Color3.new(255/255,255/255,255/255)
  128. local fb = Instance.new("TextButton",slimeframe)
  129. fb.Name = "followzButton"
  130. fb.Size = UDim2.new(0,250,0,50)
  131. fb.Position = UDim2.new(0,0,0,75)
  132. fb.Style = "RobloxButtonDefault"
  133. fb.Font = "ArialBold"
  134. fb.FontSize = "Size18"
  135. fb.Text = "followz"
  136. fb.TextColor3 = Color3.new(255/255,255/255,255/255)
  137. local sb = Instance.new("TextButton",slimeframe)
  138. sb.Name = "StopButton"
  139. sb.Size = UDim2.new(0,250,0,50)
  140. sb.Position = UDim2.new(0,0,0,125)
  141. sb.Style = "RobloxButtonDefault"
  142. sb.Font = "ArialBold"
  143. sb.FontSize = "Size18"
  144. sb.Text = "Stop followz"
  145. sb.TextColor3 = Color3.new(255/255,255/255,255/255)
  146. local gc = Instance.new("TextButton",slimeframe)
  147. gc.Name = "GreenButton"
  148. gc.Size = UDim2.new(0,250,0,50)
  149. gc.Position = UDim2.new(0,0,0,175)
  150. gc.Style = "RobloxButtonDefault"
  151. gc.Font = "ArialBold"
  152. gc.FontSize = "Size18"
  153. gc.Text = "Change To Green"
  154. gc.TextColor3 = Color3.new(255/255,255/255,255/255)
  155. local rc = Instance.new("TextButton",slimeframe)
  156. rc.Name = "RedButton"
  157. rc.Size = UDim2.new(0,250,0,50)
  158. rc.Position = UDim2.new(0,0,0,225)
  159. rc.Style = "RobloxButtonDefault"
  160. rc.Font = "ArialBold"
  161. rc.FontSize = "Size18"
  162. rc.Text = "Change To Red"
  163. rc.TextColor3 = Color3.new(255/255,255/255,255/255)
  164. local bc = Instance.new("TextButton",slimeframe)
  165. bc.Name = "BlueButton"
  166. bc.Size = UDim2.new(0,250,0,50)
  167. bc.Position = UDim2.new(0,0,0,275)
  168. bc.Style = "RobloxButtonDefault"
  169. bc.Font = "ArialBold"
  170. bc.FontSize = "Size18"
  171. bc.Text = "Change To Blue"
  172. bc.TextColor3 = Color3.new(255/255,255/255,255/255)
  173. -------------[[HELP MENU!]]-------------------------------
  174. local hlpmenu = Instance.new("Frame",gui)
  175. hlpmenu.Name = "HelpMenu"
  176. hlpmenu.Size = UDim2.new(1,0,0,80)
  177. hlpmenu.Position = UDim2.new(0,0,0,-161)
  178. hlpmenu.BackgroundTransparency = 0.3
  179. hlpmenu.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  180. hlpmenu.BorderColor3 = Color3.new(255/255,0/255,0/255)
  181. curpos = UDim2.new(0,50,0,10)
  182. local dropdownb = Instance.new("TextButton",hlpmenu)
  183. dropdownb.Name = "DropDownButton"
  184. dropdownb.Style = "RobloxButtonDefault"
  185. dropdownb.Size = UDim2.new(0,150,0,80)
  186. dropdownb.Position = UDim2.new(0.5,0,0,81)
  187. dropdownb.TextColor3 = Color3.new(255/255,255/255,255/255)
  188. dropdownb.Font = "ArialBold"
  189. dropdownb.FontSize = "Size24"
  190. dropdownb.Text = "More Help"
  191. local dropdownmnu = Instance.new("Frame",hlpmenu)
  192. dropdownmnu.Size = UDim2.new(1,0,0,800)
  193. dropdownmnu.Position = UDim2.new(0,0,15,0)
  194. dropdownmnu.BackgroundColor3 = Color3.new(0/255,0/255,0/255)
  195. dropdownmnu.BorderColor3 = Color3.new(255/255,0/255,0/255)
  196. dropdownmnu.BackgroundTransparency = 0.3
  197. local helptxt = Instance.new("TextLabel",dropdownb)
  198. helptxt.Text = "UNICORNS :3! had nothing else to write o_o"
  199. helptxt.Font = "ArialBold"
  200. helptxt.FontSize = "Size24"
  201. helptxt.TextColor3 = Color3.new(255/255,0/255,0/255)
  202. helptxt.BackgroundTransparency = 1
  203. for i = 1, #commands do
  204. local txtlbl = Instance.new("TextLabel",hlpmenu)
  205. txtlbl.TextColor3 = Color3.new(255/255,0/255,0/255)
  206. txtlbl.Name = "Command"
  207. txtlbl.Font = "ArialBold"
  208. txtlbl.FontSize = "Size14"
  209. txtlbl.Text = commands[i]
  210. txtlbl.Position = curpos
  211. curpos = curpos + UDim2.new(0,100,0,0)
  212. if i == 8 then
  213. curpos = UDim2.new(0,50,0,60)
  214. end
  215. end
  216. ------------[[This is where we create are robot!]]----------------
  217. local bot = Instance.new("Model")
  218. bot.Name= plyr.peyquinn.."peyquinn's Guard"
  219. local human = Instance.new("Humanoid",bot)
  220. human.Name = "NameSetter"
  221. human.MaxHealth = 0
  222. human.WalkSpeed = 0
  223. local head = Instance.new("Part",bot)
  224. head.Name = "Head"
  225. head.CanCollide = false
  226. head.Archivable = false
  227. head.FormFactor = "Symmetric"
  228. head.Size = Vector3.new(1,1,1)
  229. local mesh = Instance.new("SpecialMesh",head)
  230. mesh.MeshId = mshID
  231. mesh.TextureId = txtID
  232. mesh.Scale = mshScale
  233. mesh.MeshType = "FileMesh"
  234. local fly = Instance.new("BodyPosition",head)
  235. fly.Name = "Fly"
  236. fly.position = Vector3.new(0,125,0)
  237. fly.maxForce = Vector3.new(150000000000000, 150000000000000, 150000000000000)
  238. local upstraight = Instance.new("BodyGyro",head)
  239. local laser = Instance.new("SelectionPartLasso",head)
  240. laser.Name = "Laser"
  241. laser.Color = BrickColor.new("Bright red")
  242. laser.Transparency = 0
  243. laser.Visible = false
  244. --------CREATING PET SLIME!-------------------------------------------
  245. local PetSlime = Instance.new("Part")
  246. PetSlime.Name = plyr.peyquinn.."peyquinn's Slime"
  247. local part1 = Instance.new("Part",PetSlime)
  248. part1.Name = "Head"
  249. part1.Shape = "Ball"
  250. part1.Size = Vector3.new(5,5,5)
  251. part1.CFrame = CFrame.new(plyr.Character.Head.Position + Vector3.new(0,5,0))
  252. part1.BrickColor = BrickColor.new("Really black")
  253. part1.Transparency = 0.4
  254. part1.TopSurface = "Smooth"
  255. part1.BottomSurface = "Smooth"
  256. local part2 = Instance.new("Part",PetSlime)
  257. part2.Name = "Torso"
  258. part2.Shape = "Ball"
  259. part2.Size = Vector3.new(3,3,3)
  260. part2.CFrame = CFrame.new(part1.Position)
  261. part2.BrickColor = BrickColor.new("Really blue")
  262. part2.Transparency = 0.3
  263. part2.TopSurface = "Smooth"
  264. part2.BottomSurface = "Smooth"
  265. local weldz = Instance.new("Weld",part2)
  266. weldz.Part0 = part2
  267. weldz.Part1 = part1
  268. local humanuu = Instance.new("Humanoid",PetSlime)
  269. humanuu.MaxHealth = 0
  270. humanuu.Health = 0
  271. local followzz = Instance.new("BodyPosition",part2)
  272. followzz.maxForce = Vector3.new(180000,0,180000)
  273.  
  274.  
  275. --------------------------[[Now we set the basic follow functions!]]---------------------------------------------
  276. function setmode()
  277. modebox.Text = mode
  278. chtbox.Visible = false
  279. end
  280. function follow()
  281. local flyplyr = game.Workspace:findFirstChild(follow_to)
  282. if flyplyr then
  283. head.Anchored = false
  284. while true do
  285. wait()
  286. fly.position = flyplyr.Head.Position + Vector3.new(3,3,3)
  287. end
  288. end
  289. end
  290. function stopfollowing()
  291. head.Anchored = true
  292. end
  293.  
  294.  
  295. function follower()
  296. while true do
  297. wait()
  298. PetSlime.Torso.BodyPosition.position = plyr.Character.Head.Position + Vector3.new(5,0,5)
  299. end
  300. end
  301. ----------------------------------[[MAIN TOOL FUNCTION!!!]]------------------------------------------------------
  302. openmode1 = false
  303. openmode2 = false
  304. followmode = false
  305. bin.Selected:connect(function(mouse)
  306. gui.Parent = plyr.PlayerGui
  307. bot.Parent = plyr.Character
  308. -----------------------------
  309. mouse.KeyDown:connect(function(key)
  310. if (key:lower() == "q") then
  311. mode = "Open/Close" setmode()
  312. if openmode1 == false then
  313. frame:TweenPosition(UDim2.new(0.4,0,0,0))
  314. openmode1 = true
  315. else
  316. frame:TweenPosition(UDim2.new(0.4,0,0,-300))
  317. openmode1 = false
  318. end
  319. end
  320. if (key:lower() == "f") then
  321. mode = "Follow/Stop" setmode()
  322. if followmode == false then
  323. followmode = true
  324. follow_to = txtbox.Text
  325. follow()
  326. else
  327. followmode = false
  328. stopfollowing()
  329. end
  330. end
  331. if (key:lower() == "e") then
  332. mode = "Help Menu" setmode()
  333. if openmode2 == false then
  334. hlpmenu:TweenPosition(UDim2.new(0,0,0,0))
  335. openmode2 = true
  336. else
  337. hlpmenu:TweenPosition(UDim2.new(0,0,0,-161))
  338. openmode2 = false
  339. end
  340. end
  341.  
  342. if (key:lower() == "c") then
  343. mode = "Chat" setmode()
  344. openmode1 = true
  345. frame:TweenPosition(UDim2.new(0.4,0,0,0))
  346. chtbox.Visible = true
  347. local plr = game.Workspace:findFirstChild(txtbox.Text)
  348. if plr then
  349. game:GetService("Chat"):Chat(plr.Head,plr.Name..": "..chtbox.Text,Enum.ChatColor.Green)
  350. else
  351. end
  352. end
  353.  
  354. if (key:lower() == "k") then
  355. mode = "Kill" setmode()
  356. openmode1 = true
  357. frame:TweenPosition(UDim2.new(0.4,0,0,0))
  358. local plr = game.Workspace:findFirstChild(txtbox.Text)
  359. if plr then
  360. laser.Visible = true
  361. laser.Humanoid = plr.Humanoid
  362. laser.Part = bot.Head
  363. shootsound:Play()
  364. wait(0.1)
  365. laser.Visible = false
  366. wait(0.02)
  367. plr.Humanoid.Health = 0
  368. else
  369. end
  370. end
  371.  
  372. if (key:lower() == "x") then
  373. mode = "Explode" setmode()
  374. openmode1 = true
  375. frame:TweenPosition(UDim2.new(0.4,0,0,0))
  376. local plr = game.Workspace:findFirstChild(txtbox.Text)
  377. if plr then
  378. laser.Visible = true
  379. laser.Humanoid = plr.Humanoid
  380. laser.Part = bot.Head
  381. shootsound:Play()
  382. local explosive = Instance.new("Explosion",workspace)
  383. explosive.Position = plr.Torso.Position
  384. explosive.BlastPressure = 10000000
  385. explosive.BlastRadius = 5
  386. wait(0.1)
  387. laser.Visible = false
  388. wait(0.02)
  389. plr.Humanoid.Health = 0
  390. else
  391. end
  392. end
  393.  
  394. if (key:lower() == "m") then
  395. mode = "ForceField" setmode()
  396. openmode1 = true
  397. frame:TweenPosition(UDim2.new(0.4,0,0,0))
  398. local plr = game.Workspace:findFirstChild(txtbox.Text)
  399. if plr then
  400. local ff = Instance.new("ForceField",plr)
  401. else
  402. end
  403. end
  404.  
  405. if (key:lower() == "l") then
  406. local figure = Instance.new("Model",workspace)
  407. figure.Name = "Slime"
  408. local ftorso = Instance.new("Part",figure)
  409. ftorso.Name = "Torso"
  410. ftorso.formFactor = "Symmetric"
  411. ftorso.Size = Vector3.new(5,5,5)
  412. ftorso.Position = plyr.Character.Head.Position + Vector3.new(5,5,5)
  413. ftorso.BrickColor = BrickColor.new("Really black")
  414. ftorso.Transparency = 0.3
  415. ftorso.Shape = "Ball"
  416. ftorso.TopSurface = "Smooth"
  417. ftorso.BottomSurface = "Smooth"
  418. local fhead = Instance.new("Part",figure)
  419. fhead.Name = "Head"
  420. fhead.formFactor = "Symmetric"
  421. fhead.Size = Vector3.new(2,2,2)
  422. fhead.Position = ftorso.Position
  423. fhead.BrickColor = BrickColor.random(1,ballcolors)
  424. fhead.Shape = "Ball"
  425. fhead.TopSurface = "Smooth"
  426. fhead.BottomSurface = "Smooth"
  427. weld = Instance.new("Weld",figure)
  428. weld.Part0 = fhead
  429. weld.Part1 = ftorso
  430. local human2 = Instance.new("Humanoid",figure)
  431. human2.Health = 100
  432. human2.MaxHealth = 100
  433. figure:MakeJoints()
  434. figure:MoveTo(plyr.Character.Head.Position + Vector3.new(8,5,8))
  435. laser.Humanoid = human2
  436. laser.Part = bot.Head
  437. laser.Color = BrickColor.new("Bright yellow")
  438. laser.Visible = true
  439. wait(0.3)
  440. laser.Visible = false
  441. laser.Color = BrickColor.new("Bright red")
  442. function workmagic()
  443. while true do
  444. wait(1)
  445. human2:MoveTo(Vector3.new(math.random(-512,512), 3, math.random(-512,512)), workspace.Base)
  446. game:GetService("Chat"):Chat(fhead,chats[math.random(1, #chats)],Enum.ChatColor.Blue)
  447. if human2.Health <= 0 then
  448. game:GetService("Chat"):Chat(fhead,"OMG I DIED!!! NOOOOB!",Enum.ChatColor.Red)
  449. wait(2)
  450. figure:Remove()
  451. else
  452. end
  453. end
  454. end
  455. workmagic()
  456. end
  457.  
  458. if (key:lower() == "y") then
  459. mode = "Wooden Brick" setmode()
  460. local wood = Instance.new("Part",workspace)
  461. wood.Name = "Wooden Brick"
  462. wood.Material = "Wood"
  463. wood.formFactor = "Symmetric"
  464. wood.Size = Vector3.new(2,2,4)
  465. wood.CFrame = CFrame.new(plyr.Character.Head.Position + Vector3.new(0,2,0))
  466. wood.BrickColor = BrickColor.new("Brown")
  467. wood.Anchored = false
  468. local fixerthing = Instance.new("Humanoid",wood)
  469. laser.Humanoid = fixerthing
  470. laser.Part = bot.Head
  471. laser.Color = BrickColor.new("Bright yellow")
  472. laser.Visible = true
  473. wait(0.3)
  474. fixerthing:Remove()
  475. laser.Visible = false
  476. laser.Color = BrickColor.new("Bright red")
  477. end
  478.  
  479. if (key:lower() == "g") then
  480. mode = "Pet Slime" setmode()
  481. PetSlime.Parent = plyr.Character
  482. slimeframe:TweenPosition(UDim2.new(0,0,0,250), 0.1)
  483. local plr = game.Workspace:findFirstChild(plyr.peyquinn)
  484. if plr then
  485. follower()
  486. end
  487. end
  488.  
  489. ----------------------------------------------------------------
  490. if (key:lower() == "r") then
  491. local plr = game.Workspace:findFirstChild(txtbox.Text)
  492. if plr then
  493. local thing = plr.Head:findFirstChild(mode)
  494. if thing then
  495. thing:Remove()
  496. else
  497. local thing2 = plr:findFirstChild(mode)
  498. if thing2 then
  499. thing2:Remove()
  500. else
  501. local thing3 = game.Workspace:findFirstChild(mode)
  502. if thing3 then
  503. thing3:Remove()
  504. end
  505. end
  506. end
  507. end
  508. end
  509.  
  510. ----------------
  511. end)
  512. end)
  513. bin.Deselected:connect(function(mouse)
  514. bot.Parent = bin
  515. gui.Parent = bin
  516. end)
  517. ------------
  518. dropmnuvlu = 1
  519. dropdownb.MouseButton1Click:connect(function()
  520. if dropmnuvlu == 1 then
  521. dropmnuvlu = 2
  522. dropdownmnu:TweenPosition(UDim2.new(0,0,0,161))
  523. dropdownb.Text = "Less Help"
  524. else
  525. dropmnuvlu = 1
  526. dropdownmnu:TweenPosition(UDim2.new(0,0,15,0))
  527. dropdownb.Text = "More Help"
  528. end
  529. end)
  530.  
  531. cb.MouseButton1Click:connect(function()
  532. game:GetService("Chat"):Chat(part1,PetSlime.Name..": "..ct.Text,Enum.ChatColor.Red)
  533. end)
  534. fb.MouseButton1Click:connect(function()
  535. part1.Anchored = false
  536. end)
  537. sb.MouseButton1Click:connect(function()
  538. part1.Anchored = true
  539. end)
  540. gc.MouseButton1Click:connect(function()
  541. part2.BrickColor = BrickColor.new("Lime green")
  542. end)
  543. rc.MouseButton1Click:connect(function()
  544. part2.BrickColor = BrickColor.new("Really red")
  545. end)
  546. bc.MouseButton1Click:connect(function()
  547. part2.BrickColor = BrickColor.new("Really blue")
  548. end)
  549.  
  550. startmnu()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement