Advertisement
therobIoxadmin

Untitled

May 10th, 2015
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Admin = game.Players.iWafflecious.Name
  2.  
  3. local sg = Instance.new("ScreenGui",game.Players[Admin].PlayerGui)
  4. local f = Instance.new("Frame",sg)
  5. f.BackgroundColor3 = Color3.new(0,0,0)
  6. f.BorderColor3 = Color3.new(255,0,0)
  7. f.Position = UDim2.new(0.01,0,0.7,0)
  8. f.Size = UDim2.new(0,500,0,29)
  9. local tb1 = Instance.new("TextBox",f)
  10. tb1.Name = "TextBox1"
  11. tb1.BackgroundColor3 = Color3.new(255,255,255)
  12. tb1.BorderSizePixel = 0
  13. tb1.Position = UDim2.new(0,45,0,2)
  14. tb1.Size = UDim2.new(0,200,0,25)
  15. tb1.Font = "Arial"
  16. tb1.FontSize = "Size18"
  17. tb1.Text = ""
  18. tb1.TextXAlignment = "Left"
  19. local tb2 = Instance.new("TextBox",f)
  20. tb2.Name = "TextBox2"
  21. tb2.BackgroundColor3 = Color3.new(255,255,255)
  22. tb2.BorderSizePixel = 0
  23. tb2.Position = UDim2.new(0,311,0,2)
  24. tb2.Size = UDim2.new(0,109,0,25)
  25. tb2.Font = "Arial"
  26. tb2.FontSize = "Size18"
  27. tb2.Text = ""
  28. tb2.TextXAlignment = "Left"
  29. local tbutton = Instance.new("TextButton",f)
  30. tbutton.BackgroundColor3 = Color3.new(0,0,0)
  31. tbutton.BorderColor3 = Color3.new(200/255,200/255,200/255)
  32. tbutton.Position = UDim2.new(0,423,0,2)
  33. tbutton.Size = UDim2.new(0,75,0,25)
  34. tbutton.Text = "Execute"
  35. tbutton.TextColor3 = Color3.new(200/255,200/255,200/255)
  36. local t1 = Instance.new("TextLabel",f)
  37. t1.Name = "TextLabel1"
  38. t1.BackgroundColor3 = Color3.new(0,0,0)
  39. t1.BorderSizePixel = 0
  40. t1.Position = UDim2.new(0,2,0,2)
  41. t1.Size = UDim2.new(0,40,0,25)
  42. t1.Text = "Player:"
  43. t1.TextColor3 = Color3.new(200/255,200/255,200/255)
  44. local t2 = Instance.new("TextLabel",f)
  45. t2.Name = "TextLabel2"
  46. t2.BackgroundColor3 = Color3.new(0,0,0)
  47. t2.BorderSizePixel = 0
  48. t2.Position = UDim2.new(0,248,0,2)
  49. t2.Size = UDim2.new(0,60,0,25)
  50. t2.Text = "Command:"
  51. t2.TextColor3 = Color3.new(200/255,200/255,200/255)
  52.  
  53. function Execute()
  54. if tb2.Text == "kill" then
  55. local player = game.Players:FindFirstChild(tb1.Text)
  56. if player ~= nil then
  57. player.Character:BreakJoints()
  58. end
  59. elseif tb2.Text == "loopkill" then
  60. local player = game.Players:FindFirstChild(tb1.Text)
  61. if player ~= nil then
  62. while true do
  63. wait(0.1)
  64. player.Character:BreakJoints()
  65. end
  66. end
  67. elseif tb2.Text == "explode" then
  68. local player = game.Players:FindFirstChild(tb1.Text)
  69. if player ~= nil then
  70. local e = Instance.new("Explosion",player.Character.Head)
  71. e.Position = player.Character.Head.Position
  72. end
  73. elseif tb2.Text == "maxhealth" then
  74. local player = game.Players:FindFirstChild(tb1.Text)
  75. if player ~= nil then
  76. player.Character.Humanoid.MaxHealth = math.huge
  77. player.Character.Humanoid.Health = math.huge
  78. end
  79. elseif tb2.Text == "forcefield" then
  80. local player = game.Players:FindFirstChild(tb1.Text)
  81. if player ~= nil then
  82. local f = Instance.new("ForceField",player.Character)
  83. end
  84. elseif tb2.Text == "sparkles" then
  85. local player = game.Players:FindFirstChild(tb1.Text)
  86. if player ~= nil then
  87. local s = Instance.new("Sparkles",player.Character.Head)
  88. local s = Instance.new("Sparkles",player.Character.Torso)
  89. local s = Instance.new("Sparkles",player.Character["Left Arm"])
  90. local s = Instance.new("Sparkles",player.Character["Right Arm"])
  91. local s = Instance.new("Sparkles",player.Character["Left Leg"])
  92. local s = Instance.new("Sparkles",player.Character["Right Leg"])
  93. end
  94. elseif tb2.Text == "fire" then
  95. local player = game.Players:FindFirstChild(tb1.Text)
  96. if player ~= nil then
  97. local s = Instance.new("Fire",player.Character.Head)
  98. local s = Instance.new("Fire",player.Character.Torso)
  99. local s = Instance.new("Fire",player.Character["Left Arm"])
  100. local s = Instance.new("Fire",player.Character["Right Arm"])
  101. local s = Instance.new("Fire",player.Character["Left Leg"])
  102. local s = Instance.new("Fire",player.Character["Right Leg"])
  103. end
  104. elseif tb2.Text == "punish" then
  105. local player = game.Players:FindFirstChild(tb1.Text)
  106. if player ~= nil then
  107. player.Character.Parent = game.Lighting
  108. end
  109. elseif tb2.Text == "unpunish" then
  110. local player = game.Players:FindFirstChild(tb1.Text)
  111. if player ~= nil then
  112. player.Character.Parent = game.Workspace
  113. player.Character:MakeJoints()
  114. end
  115. elseif tb2.Text == "respawn" then
  116. local player = game.Players:FindFirstChild(tb1.Text)
  117. if player ~= nil then
  118. player:LoadCharacter()
  119. end
  120. elseif tb2.Text == "kick" then
  121. local player = game.Players:FindFirstChild(tb1.Text)
  122. if player ~= nil then
  123. player:remove()
  124. end
  125. elseif tb2.Text == "crash" then
  126. local player = game.Players:FindFirstChild(tb1.Text)
  127. if player ~= nil then
  128. while true do
  129. local h = Instance.new("HopperBin",player.Backpack)
  130. end
  131. end
  132. elseif tb2.Text == "chat" then
  133. local player = game.Players:FindFirstChild(tb1.Text)
  134. if player ~= nil then
  135. local f = Instance.new("Frame",game.Players[Admin].PlayerGui.ScreenGui)
  136. f.Name = "Chat Gui"
  137. f.BackgroundColor3 = Color3.new(0,0,0)
  138. f.BorderColor3 = Color3.new(255,0,0)
  139. f.Position = UDim2.new(0.01,0,0.7,30)
  140. f.Size = UDim2.new(0,500,0,29)
  141. local tbox = Instance.new("TextBox",f)
  142. tbox.BackgroundColor3 = Color3.new(255,255,255)
  143. tbox.BorderSizePixel = 0
  144. tbox.Position = UDim2.new(0,45,0,2)
  145. tbox.Size = UDim2.new(0,375,0,25)
  146. tbox.Font = "Arial"
  147. tbox.FontSize = "Size18"
  148. tbox.Text = ""
  149. tbox.TextXAlignment = "Left"
  150. local tb = Instance.new("TextButton",f)
  151. tb.BackgroundColor3 = Color3.new(0,0,0)
  152. tb.BorderColor3 = Color3.new(200/255,200/255,200/255)
  153. tb.Position = UDim2.new(0,423,0,2)
  154. tb.Size = UDim2.new(0,75,0,25)
  155. tb.Text = "Execute"
  156. tb.TextColor3 = Color3.new(200/255,200/255,200/255)
  157. local tl = Instance.new("TextLabel",f)
  158. tl.BackgroundColor3 = Color3.new(0,0,0)
  159. tl.BorderSizePixel = 0
  160. tl.Position = UDim2.new(0,2,0,2)
  161. tl.Size = UDim2.new(0,40,0,25)
  162. tl.Text = "Say:"
  163. tl.TextColor3 = Color3.new(200/255,200/255,200/255)
  164. local exitbutton = Instance.new("TextButton",f)
  165. exitbutton.BackgroundColor3 = Color3.new(0,0,0)
  166. exitbutton.BorderColor3 = Color3.new(200/255,200/255,200/255)
  167. exitbutton.Position = UDim2.new(0,423,0,-28)
  168. exitbutton.Size = UDim2.new(0,75,0,25)
  169. exitbutton.Text = "Exit"
  170. exitbutton.TextColor3 = Color3.new(200/255,200/255,200/255)
  171. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = false
  172. local function Execute()
  173. local player = game.Players:FindFirstChild(tb1.Text)
  174. if player ~= nil then
  175. game:GetService("Chat"):Chat(player.Character.Head,""..tbox.Text.."")
  176. end
  177. end
  178. tb.MouseButton1Down:connect(Execute)
  179. local function Exit()
  180. f:Destroy()
  181. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = true
  182. end
  183. exitbutton.MouseButton1Down:connect(Exit)
  184. end
  185. elseif tb2.Text == "newbase" then
  186. local b = Instance.new("Part",game.Workspace)
  187. b.Name = "BasePlate"
  188. b.BrickColor = BrickColor.new("Bright green")
  189. b.Anchored = true
  190. b.Locked = true
  191. b.FormFactor = "Plate"
  192. b.Size = Vector3.new(512,0.4,512)
  193. elseif tb2.Text == "guy" then
  194. local player = game.Players:FindFirstChild(tb1.Text)
  195. if player ~= nil then
  196. local d = player.Character:GetChildren()
  197. for i=1, #d do
  198. if (d[i].className == "Hat") then
  199. d[i]:remove()
  200. end
  201. end
  202. local h = Instance.new("Hat",player.Character)
  203. h.AttachmentForward = Vector3.new(0,0,-1)
  204. h.AttachmentPos = Vector3.new(0,-0.05,0)
  205. h.AttachmentRight = Vector3.new(1,0,0)
  206. h.AttachmentUp = Vector3.new(0,1,0)
  207. local handle = Instance.new("Part",h)
  208. handle.Name = "Handle"
  209. handle.CanCollide = false
  210. handle.Locked = true
  211. handle.FormFactor = "Symmetric"
  212. handle.Size = Vector3.new(1,1,2)
  213. local m = Instance.new("SpecialMesh",handle)
  214. m.MeshId = "http://www.roblox.com/asset/?id=16627529"
  215. m.MeshType = "FileMesh"
  216. m.Scale = Vector3.new(1.05,1.05,1.05)
  217. m.TextureId = "http://www.roblox.com/asset/?id=50891348"
  218. local w = Instance.new("Weld",player.Character.Head)
  219. w.Part0 = player.Character.Head
  220. w.Part1 = handle
  221. w.C0 = CFrame.new(0,0.5,0)
  222. local la = Instance.new("CharacterMesh",player.Character)
  223. la.BodyPart = "LeftArm"
  224. la.MeshId = "27111419"
  225. local ll = Instance.new("CharacterMesh",player.Character)
  226. ll.BodyPart = "LeftLeg"
  227. ll.MeshId = "27111857"
  228. local ra = Instance.new("CharacterMesh",player.Character)
  229. ra.BodyPart = "RightArm"
  230. ra.MeshId = "27111864"
  231. local rl = Instance.new("CharacterMesh",player.Character)
  232. rl.BodyPart = "RightLeg"
  233. rl.MeshId = "27111882"
  234. local t = Instance.new("CharacterMesh",player.Character)
  235. t.BodyPart = "Torso"
  236. t.MeshId = "27111894"
  237. player.Character.Head.face.Texture = "http://www.roblox.com/asset/?id=31123853"
  238. end
  239. elseif tb2.Text == "girl" then
  240. local player = game.Players:FindFirstChild(tb1.Text)
  241. if player ~= nil then
  242. local d = player.Character:GetChildren()
  243. for i=1, #d do
  244. if (d[i].className == "Hat") then
  245. d[i]:remove()
  246. end
  247. end
  248. local h = Instance.new("Hat",player.Character)
  249. h.AttachmentForward = Vector3.new(-0,-0.0995,-0.995)
  250. h.AttachmentPos = Vector3.new(0,0.9,0)
  251. h.AttachmentRight = Vector3.new(1,0,0)
  252. h.AttachmentUp = Vector3.new(0,0.995,-0.0995)
  253. local handle = Instance.new("Part",h)
  254. handle.Name = "Handle"
  255. handle.Position = player.Character.Head.Position
  256. handle.CanCollide = false
  257. handle.Locked = true
  258. handle.FormFactor = "Symmetric"
  259. handle.Size = Vector3.new(1,1,1)
  260. local m = Instance.new("SpecialMesh",handle)
  261. m.MeshId = "http://www.roblox.com/asset/?id=13070796"
  262. m.MeshType = "FileMesh"
  263. m.Offset = Vector3.new(0,-0.3,-0.05)
  264. m.TextureId = "http://www.roblox.com/asset/?id=14765363"
  265. local w = Instance.new("Weld",player.Character.Head)
  266. w.Name = "HeadWeld"
  267. w.Part0 = player.Character.Head
  268. w.Part1 = handle
  269. local la = Instance.new("CharacterMesh",player.Character)
  270. la.BodyPart = "LeftArm"
  271. la.MeshId = "27111419"
  272. local ll = Instance.new("CharacterMesh",player.Character)
  273. ll.BodyPart = "LeftLeg"
  274. ll.MeshId = "27111857"
  275. local ra = Instance.new("CharacterMesh",player.Character)
  276. ra.BodyPart = "RightArm"
  277. ra.MeshId = "27111864"
  278. local rl = Instance.new("CharacterMesh",player.Character)
  279. rl.BodyPart = "RightLeg"
  280. rl.MeshId = "27111882"
  281. local t = Instance.new("CharacterMesh",player.Character)
  282. t.BodyPart = "Torso"
  283. t.MeshId = "27111894"
  284. player.Character.Head.face.Texture = "http://www.roblox.com/asset/?id=174005785"
  285. end
  286. elseif tb2.Text == "btools" then
  287. local player = game.Players:FindFirstChild(tb1.Text)
  288. if player ~= nil then
  289. local c = Instance.new("HopperBin",player.Backpack)
  290. c.BinType = "Clone"
  291. local gt = Instance.new("HopperBin",player.Backpack)
  292. gt.BinType = "GameTool"
  293. local g = Instance.new("HopperBin",player.Backpack)
  294. g.BinType = "Grab"
  295. local h = Instance.new("HopperBin",player.Backpack)
  296. h.BinType = "Hammer"
  297. end
  298. elseif tb2.Text == "day" then
  299. game.Lighting.TimeOfDay = "14:00:00"
  300. elseif tb2.Text == "night" then
  301. game.Lighting.TimeOfDay = "1:00:00"
  302. elseif tb2.Text == "ambient" then
  303. local f = Instance.new("Frame",game.Players[Admin].PlayerGui.ScreenGui)
  304. f.Name = "Ambient Changer"
  305. f.BackgroundColor3 = Color3.new(0,0,0)
  306. f.BorderColor3 = Color3.new(1,0,0)
  307. f.Position = UDim2.new(0.01,0,0.7,30)
  308. f.Size = UDim2.new(0,500,0,29)
  309. local tbox1 = Instance.new("TextBox",f)
  310. tbox1.BackgroundColor3 = Color3.new(1,1,1)
  311. tbox1.BorderSizePixel = 0
  312. tbox1.Position = UDim2.new(0,90,0,2)
  313. tbox1.Size = UDim2.new(0,50,0,25)
  314. tbox1.Font = "Arial"
  315. tbox1.FontSize = "Size18"
  316. tbox1.Text = ""
  317. local tbox2 = Instance.new("TextBox",f)
  318. tbox2.BackgroundColor3 = Color3.new(1,1,1)
  319. tbox2.BorderSizePixel = 0
  320. tbox2.Position = UDim2.new(0,230,0,2)
  321. tbox2.Size = UDim2.new(0,50,0,25)
  322. tbox2.Font = "Arial"
  323. tbox2.FontSize = "Size18"
  324. tbox2.Text = ""
  325. local tbox3 = Instance.new("TextBox",f)
  326. tbox3.BackgroundColor3 = Color3.new(1,1,1)
  327. tbox3.BorderSizePixel = 0
  328. tbox3.Position = UDim2.new(0,370,0,2)
  329. tbox3.Size = UDim2.new(0,50,0,25)
  330. tbox3.Font = "Arial"
  331. tbox3.FontSize = "Size18"
  332. tbox3.Text = ""
  333. local button = Instance.new("TextButton",f)
  334. button.BackgroundColor3 = Color3.new(0,0,0)
  335. button.BorderColor3 = Color3.new(200/255,200/255,200/255)
  336. button.Position = UDim2.new(0,423,0,2)
  337. button.Size = UDim2.new(0,75,0,25)
  338. button.Text = "Execute"
  339. button.TextColor3 = Color3.new(200/255,200/255,200/255)
  340. local textlabel1 = Instance.new("TextLabel",f)
  341. textlabel1.BackgroundTransparency = 1
  342. textlabel1.BorderSizePixel = 0
  343. textlabel1.Position = UDim2.new(0,2,0,2)
  344. textlabel1.Size = UDim2.new(0,60,0,25)
  345. textlabel1.Text = "Ambience:"
  346. textlabel1.TextColor3 = Color3.new(200/255,200/255,200/255)
  347. local textlabel2 = Instance.new("TextLabel",f)
  348. textlabel2.Name = "Red"
  349. textlabel2.BackgroundTransparency = 1
  350. textlabel2.BorderSizePixel = 0
  351. textlabel2.Position = UDim2.new(0,60,0,2)
  352. textlabel2.Size = UDim2.new(0,30,0,25)
  353. textlabel2.Font = "SourceSansBold"
  354. textlabel2.FontSize = "Size18"
  355. textlabel2.Text = "Red"
  356. textlabel2.TextColor3 = Color3.new(1,0,0)
  357. local textlabel3 = Instance.new("TextLabel",f)
  358. textlabel3.Name = "Green"
  359. textlabel3.BackgroundTransparency = 1
  360. textlabel3.BorderSizePixel = 0
  361. textlabel3.Position = UDim2.new(0,180,0,2)
  362. textlabel3.Size = UDim2.new(0,50,0,25)
  363. textlabel3.Font = "SourceSansBold"
  364. textlabel3.FontSize = "Size18"
  365. textlabel3.Text = "Green"
  366. textlabel3.TextColor3 = Color3.new(0,1,0)
  367. local textlabel4 = Instance.new("TextLabel",f)
  368. textlabel4.Name = "Blue"
  369. textlabel4.BackgroundTransparency = 1
  370. textlabel4.BorderSizePixel = 0
  371. textlabel4.Position = UDim2.new(0,325,0,2)
  372. textlabel4.Size = UDim2.new(0,50,0,25)
  373. textlabel4.Font = "SourceSansBold"
  374. textlabel4.FontSize = "Size18"
  375. textlabel4.Text = "Blue"
  376. textlabel4.TextColor3 = Color3.new(100/255,100/255,1)
  377. local exitbutton = Instance.new("TextButton",f)
  378. exitbutton.BackgroundColor3 = Color3.new(0,0,0)
  379. exitbutton.BorderColor3 = Color3.new(200/255,200/255,200/255)
  380. exitbutton.Position = UDim2.new(0,423,0,-28)
  381. exitbutton.Size = UDim2.new(0,75,0,25)
  382. exitbutton.Text = "Exit"
  383. exitbutton.TextColor3 = Color3.new(200/255,200/255,200/255)
  384. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = false
  385. local function lightingchange()
  386. game.Lighting.Ambient = Color3.new(tbox1.Text,tbox2.Text,tbox3.Text)
  387. end
  388. button.MouseButton1Down:connect(lightingchange)
  389. local function exit()
  390. game.Players[Admin].PlayerGui.ScreenGui["Ambient Changer"]:Destroy()
  391. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = true
  392. end
  393. exitbutton.MouseButton1Down:connect(exit)
  394. elseif tb2.Text == "oambient" then
  395. local f = Instance.new("Frame",game.Players[Admin].PlayerGui.ScreenGui)
  396. f.Name = "Ambient Changer"
  397. f.BackgroundColor3 = Color3.new(0,0,0)
  398. f.BorderColor3 = Color3.new(1,0,0)
  399. f.Position = UDim2.new(0.01,0,0.7,30)
  400. f.Size = UDim2.new(0,500,0,29)
  401. local tbox1 = Instance.new("TextBox",f)
  402. tbox1.BackgroundColor3 = Color3.new(1,1,1)
  403. tbox1.BorderSizePixel = 0
  404. tbox1.Position = UDim2.new(0,90,0,2)
  405. tbox1.Size = UDim2.new(0,50,0,25)
  406. tbox1.Font = "Arial"
  407. tbox1.FontSize = "Size18"
  408. tbox1.Text = ""
  409. local tbox2 = Instance.new("TextBox",f)
  410. tbox2.BackgroundColor3 = Color3.new(1,1,1)
  411. tbox2.BorderSizePixel = 0
  412. tbox2.Position = UDim2.new(0,230,0,2)
  413. tbox2.Size = UDim2.new(0,50,0,25)
  414. tbox2.Font = "Arial"
  415. tbox2.FontSize = "Size18"
  416. tbox2.Text = ""
  417. local tbox3 = Instance.new("TextBox",f)
  418. tbox3.BackgroundColor3 = Color3.new(1,1,1)
  419. tbox3.BorderSizePixel = 0
  420. tbox3.Position = UDim2.new(0,370,0,2)
  421. tbox3.Size = UDim2.new(0,50,0,25)
  422. tbox3.Font = "Arial"
  423. tbox3.FontSize = "Size18"
  424. tbox3.Text = ""
  425. local button = Instance.new("TextButton",f)
  426. button.BackgroundColor3 = Color3.new(0,0,0)
  427. button.BorderColor3 = Color3.new(200/255,200/255,200/255)
  428. button.Position = UDim2.new(0,423,0,2)
  429. button.Size = UDim2.new(0,75,0,25)
  430. button.Text = "Execute"
  431. button.TextColor3 = Color3.new(200/255,200/255,200/255)
  432. local textlabel1 = Instance.new("TextLabel",f)
  433. textlabel1.BackgroundTransparency = 1
  434. textlabel1.BorderSizePixel = 0
  435. textlabel1.Position = UDim2.new(0,2,0,2)
  436. textlabel1.Size = UDim2.new(0,60,0,25)
  437. textlabel1.Text = "oAmbience:"
  438. textlabel1.TextColor3 = Color3.new(200/255,200/255,200/255)
  439. local textlabel2 = Instance.new("TextLabel",f)
  440. textlabel2.Name = "Red"
  441. textlabel2.BackgroundTransparency = 1
  442. textlabel2.BorderSizePixel = 0
  443. textlabel2.Position = UDim2.new(0,60,0,2)
  444. textlabel2.Size = UDim2.new(0,30,0,25)
  445. textlabel2.Font = "SourceSansBold"
  446. textlabel2.FontSize = "Size18"
  447. textlabel2.Text = "Red"
  448. textlabel2.TextColor3 = Color3.new(1,0,0)
  449. local textlabel3 = Instance.new("TextLabel",f)
  450. textlabel3.Name = "Green"
  451. textlabel3.BackgroundTransparency = 1
  452. textlabel3.BorderSizePixel = 0
  453. textlabel3.Position = UDim2.new(0,180,0,2)
  454. textlabel3.Size = UDim2.new(0,50,0,25)
  455. textlabel3.Font = "SourceSansBold"
  456. textlabel3.FontSize = "Size18"
  457. textlabel3.Text = "Green"
  458. textlabel3.TextColor3 = Color3.new(0,1,0)
  459. local textlabel4 = Instance.new("TextLabel",f)
  460. textlabel4.Name = "Blue"
  461. textlabel4.BackgroundTransparency = 1
  462. textlabel4.BorderSizePixel = 0
  463. textlabel4.Position = UDim2.new(0,325,0,2)
  464. textlabel4.Size = UDim2.new(0,50,0,25)
  465. textlabel4.Font = "SourceSansBold"
  466. textlabel4.FontSize = "Size18"
  467. textlabel4.Text = "Blue"
  468. textlabel4.TextColor3 = Color3.new(100/255,100/255,1)
  469. local exitbutton = Instance.new("TextButton",f)
  470. exitbutton.BackgroundColor3 = Color3.new(0,0,0)
  471. exitbutton.BorderColor3 = Color3.new(200/255,200/255,200/255)
  472. exitbutton.Position = UDim2.new(0,423,0,-28)
  473. exitbutton.Size = UDim2.new(0,75,0,25)
  474. exitbutton.Text = "Exit"
  475. exitbutton.TextColor3 = Color3.new(200/255,200/255,200/255)
  476. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = false
  477. local function lightingchange()
  478. game.Lighting.OutdoorAmbient = Color3.new(tbox1.Text,tbox2.Text,tbox3.Text)
  479. end
  480. button.MouseButton1Down:connect(lightingchange)
  481. local function exit()
  482. game.Players[Admin].PlayerGui.ScreenGui["Ambient Changer"]:Destroy()
  483. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = true
  484. end
  485. exitbutton.MouseButton1Down:connect(exit)
  486. elseif tb2.Text == "brightness" then
  487. local f = Instance.new("Frame",game.Players[Admin].PlayerGui.ScreenGui)
  488. f.Name = "Brightness"
  489. f.BackgroundColor3 = Color3.new(0,0,0)
  490. f.BorderColor3 = Color3.new(1,0,0)
  491. f.Position = UDim2.new(0.01,0,0.7,30)
  492. f.Size = UDim2.new(0,500,0,29)
  493. local tb = Instance.new("TextBox",f)
  494. tb.BackgroundColor3 = Color3.new(1,1,1)
  495. tb.BorderSizePixel = 0
  496. tb.Position = UDim2.new(0,65,0,2)
  497. tb.Size = UDim2.new(0,355,0,25)
  498. tb.Font = "Arial"
  499. tb.FontSize = "Size18"
  500. tb.Text = ""
  501. tb.TextXAlignment = "Left"
  502. local button = Instance.new("TextButton",f)
  503. button.BackgroundColor3 = Color3.new(0,0,0)
  504. button.BorderColor3 = Color3.new(200/255,200/255,200/255)
  505. button.Position = UDim2.new(0,423,0,2)
  506. button.Size = UDim2.new(0,75,0,25)
  507. button.Text = "Execute"
  508. button.TextColor3 = Color3.new(200/255,200/255,200/255)
  509. local tl = Instance.new("TextLabel",f)
  510. tl.BackgroundColor3 = Color3.new(0,0,0)
  511. tl.BorderSizePixel = 0
  512. tl.Position = UDim2.new(0,2,0,2)
  513. tl.Size = UDim2.new(0,60,0,25)
  514. tl.Text = "Brightness:"
  515. tl.TextColor3 = Color3.new(200/255,200/255,200/255)
  516. local exitbutton2 = Instance.new("TextButton",f)
  517. exitbutton2.BackgroundColor3 = Color3.new(0,0,0)
  518. exitbutton2.BorderColor3 = Color3.new(200/255,200/255,200/255)
  519. exitbutton2.Position = UDim2.new(0,423,0,-28)
  520. exitbutton2.Size = UDim2.new(0,75,0,25)
  521. exitbutton2.Text = "Exit"
  522. exitbutton2.TextColor3 = Color3.new(200/255,200/255,200/255)
  523. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = false
  524. local function change()
  525. game.Lighting.Brightness = tb.Text
  526. end
  527. button.MouseButton1Down:connect(change)
  528. local function exit2()
  529. game.Players[Admin].PlayerGui.ScreenGui.Brightness:Destroy()
  530. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = true
  531. end
  532. exitbutton2.MouseButton1Down:connect(exit2)
  533. elseif tb2.Text == "quickscript" then
  534. local f = Instance.new("Frame",game.Players[Admin].PlayerGui.ScreenGui)
  535. f.Name = "QuickScript"
  536. f.BackgroundColor3 = Color3.new(0,0,0)
  537. f.BorderColor3 = Color3.new(1,0,0)
  538. f.Position = UDim2.new(0.01,0,0.7,30)
  539. f.Size = UDim2.new(0,500,0,29)
  540. local tb = Instance.new("TextBox",f)
  541. tb.BackgroundColor3 = Color3.new(1,1,1)
  542. tb.ClearTextOnFocus = false
  543. tb.Position = UDim2.new(0,70,0,2)
  544. tb.Size = UDim2.new(0,350,0,25)
  545. tb.Font = "SourceSansBold"
  546. tb.FontSize = "Size14"
  547. tb.Text = ""
  548. tb.TextColor3 = Color3.new(0,0,0)
  549. tb.TextXAlignment = "Left"
  550. local button = Instance.new("TextButton",f)
  551. button.BackgroundColor3 = Color3.new(0,0,0)
  552. button.BorderColor3 = Color3.new(200/255,200/255,200/255)
  553. button.Position = UDim2.new(0,423,0,2)
  554. button.Size = UDim2.new(0,75,0,25)
  555. button.Text = "Execute"
  556. button.TextColor3 = Color3.new(200/255,200/255,200/255)
  557. local tl = Instance.new("TextLabel",f)
  558. tl.BackgroundTransparency = 1
  559. tl.BorderSizePixel = 1
  560. tl.Position = UDim2.new(0,2,0,2)
  561. tl.Size = UDim2.new(0,65,0,25)
  562. tl.Text = "QuickScript:"
  563. tl.TextColor3 = Color3.new(200/255,200/255,200/255)
  564. local exitbutton = Instance.new("TextButton",f)
  565. exitbutton.BackgroundColor3 = Color3.new(0,0,0)
  566. exitbutton.BorderColor3 = Color3.new(200/255,200/255,200/255)
  567. exitbutton.Position = UDim2.new(0,423,0,-28)
  568. exitbutton.Size = UDim2.new(0,75,0,25)
  569. exitbutton.Text = "Exit"
  570. exitbutton.TextColor3 = Color3.new(200/255,200/255,200/255)
  571. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = false
  572. local function execute()
  573. loadstring(tb.Text)()
  574. end
  575. button.MouseButton1Down:connect(execute)
  576. local function exit()
  577. game.Players[Admin].PlayerGui.ScreenGui.QuickScript:Destroy()
  578. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = true
  579. end
  580. exitbutton.MouseButton1Down:connect(exit)
  581. elseif tb2.Text == "runscript" then
  582. local f = Instance.new("Frame",game.Players[Admin].PlayerGui.ScreenGui)
  583. f.Name = "ScriptBuilder"
  584. f.BackgroundColor3 = Color3.new(0,0,0)
  585. f.BorderColor3 = Color3.new(1,0,0)
  586. f.Position = UDim2.new(0.01,0,0.7,-1)
  587. f.Size = UDim2.new(0,500,0,-400)
  588. local tb = Instance.new("TextBox",f)
  589. tb.BackgroundColor3 = Color3.new(1,1,1)
  590. tb.BorderColor3 = Color3.new(1,0,0)
  591. tb.ClearTextOnFocus = false
  592. tb.MultiLine = true
  593. tb.Position = UDim2.new(0,17,0,2)
  594. tb.Size = UDim2.new(0,481,0,368)
  595. tb.Font = "SourceSansBold"
  596. tb.FontSize = "Size14"
  597. tb.Text = ""
  598. tb.TextColor3 = Color3.new(0,0,0)
  599. tb.TextXAlignment = "Left"
  600. tb.TextYAlignment = "Top"
  601. tb.ClipsDescendants = true
  602. local button = Instance.new("TextButton",f)
  603. button.BackgroundColor3 = Color3.new(0,0,0)
  604. button.BorderColor3 = Color3.new(200/255,200/255,200/255)
  605. button.Position = UDim2.new(0,223,0,373)
  606. button.Size = UDim2.new(0,75,0,25)
  607. button.Text = "Run"
  608. button.TextColor3 = Color3.new(200/255,200/255,200/255)
  609. local la = Instance.new("TextLabel",f)
  610. la.BackgroundTransparency = 1
  611. la.Position = UDim2.new(0,0,0,0)
  612. la.Size = UDim2.new(0,15,0,15)
  613. la.Text = "1"
  614. la.TextColor3 = Color3.new(200/255,200/255,200/255)
  615. local lb = Instance.new("TextLabel",f)
  616. lb.BackgroundTransparency = 1
  617. lb.Position = UDim2.new(0,0,0,14)
  618. lb.Size = UDim2.new(0,15,0,15)
  619. lb.Text = "2"
  620. lb.TextColor3 = Color3.new(200/255,200/255,200/255)
  621. local lc = Instance.new("TextLabel",f)
  622. lc.BackgroundTransparency = 1
  623. lc.Position = UDim2.new(0,0,0,28)
  624. lc.Size = UDim2.new(0,15,0,15)
  625. lc.Text = "3"
  626. lc.TextColor3 = Color3.new(200/255,200/255,200/255)
  627. local ld = Instance.new("TextLabel",f)
  628. ld.BackgroundTransparency = 1
  629. ld.Position = UDim2.new(0,0,0,42)
  630. ld.Size = UDim2.new(0,15,0,15)
  631. ld.Text = "4"
  632. ld.TextColor3 = Color3.new(200/255,200/255,200/255)
  633. local le = Instance.new("TextLabel",f)
  634. le.BackgroundTransparency = 1
  635. le.Position = UDim2.new(0,0,0,56)
  636. le.Size = UDim2.new(0,15,0,15)
  637. le.Text = "5"
  638. le.TextColor3 = Color3.new(200/255,200/255,200/255)
  639. local lf = Instance.new("TextLabel",f)
  640. lf.BackgroundTransparency = 1
  641. lf.Position = UDim2.new(0,0,0,70)
  642. lf.Size = UDim2.new(0,15,0,15)
  643. lf.Text = "6"
  644. lf.TextColor3 = Color3.new(200/255,200/255,200/255)
  645. local lg = Instance.new("TextLabel",f)
  646. lg.BackgroundTransparency = 1
  647. lg.Position = UDim2.new(0,0,0,84)
  648. lg.Size = UDim2.new(0,15,0,15)
  649. lg.Text = "7"
  650. lg.TextColor3 = Color3.new(200/255,200/255,200/255)
  651. local lh = Instance.new("TextLabel",f)
  652. lh.BackgroundTransparency = 1
  653. lh.Position = UDim2.new(0,0,0,98)
  654. lh.Size = UDim2.new(0,15,0,15)
  655. lh.Text = "8"
  656. lh.TextColor3 = Color3.new(200/255,200/255,200/255)
  657. local li = Instance.new("TextLabel",f)
  658. li.BackgroundTransparency = 1
  659. li.Position = UDim2.new(0,0,0,112)
  660. li.Size = UDim2.new(0,15,0,15)
  661. li.Text = "9"
  662. li.TextColor3 = Color3.new(200/255,200/255,200/255)
  663. local lj = Instance.new("TextLabel",f)
  664. lj.BackgroundTransparency = 1
  665. lj.Position = UDim2.new(0,0,0,126)
  666. lj.Size = UDim2.new(0,15,0,15)
  667. lj.Text = "10"
  668. lj.TextColor3 = Color3.new(200/255,200/255,200/255)
  669. local lk = Instance.new("TextLabel",f)
  670. lk.BackgroundTransparency = 1
  671. lk.Position = UDim2.new(0,0,0,140)
  672. lk.Size = UDim2.new(0,15,0,15)
  673. lk.Text = "11"
  674. lk.TextColor3 = Color3.new(200/255,200/255,200/255)
  675. local ll = Instance.new("TextLabel",f)
  676. ll.BackgroundTransparency = 1
  677. ll.Position = UDim2.new(0,0,0,154)
  678. ll.Size = UDim2.new(0,15,0,15)
  679. ll.Text = "12"
  680. ll.TextColor3 = Color3.new(200/255,200/255,200/255)
  681. local lm = Instance.new("TextLabel",f)
  682. lm.BackgroundTransparency = 1
  683. lm.Position = UDim2.new(0,0,0,168)
  684. lm.Size = UDim2.new(0,15,0,15)
  685. lm.Text = "13"
  686. lm.TextColor3 = Color3.new(200/255,200/255,200/255)
  687. local ln = Instance.new("TextLabel",f)
  688. ln.BackgroundTransparency = 1
  689. ln.Position = UDim2.new(0,0,0,182)
  690. ln.Size = UDim2.new(0,15,0,15)
  691. ln.Text = "14"
  692. ln.TextColor3 = Color3.new(200/255,200/255,200/255)
  693. local lo = Instance.new("TextLabel",f)
  694. lo.BackgroundTransparency = 1
  695. lo.Position = UDim2.new(0,0,0,196)
  696. lo.Size = UDim2.new(0,15,0,15)
  697. lo.Text = "15"
  698. lo.TextColor3 = Color3.new(200/255,200/255,200/255)
  699. local lp = Instance.new("TextLabel",f)
  700. lp.BackgroundTransparency = 1
  701. lp.Position = UDim2.new(0,0,0,210)
  702. lp.Size = UDim2.new(0,15,0,15)
  703. lp.Text = "16"
  704. lp.TextColor3 = Color3.new(200/255,200/255,200/255)
  705. local lq = Instance.new("TextLabel",f)
  706. lq.BackgroundTransparency = 1
  707. lq.Position = UDim2.new(0,0,0,224)
  708. lq.Size = UDim2.new(0,15,0,15)
  709. lq.Text = "17"
  710. lq.TextColor3 = Color3.new(200/255,200/255,200/255)
  711. local lr = Instance.new("TextLabel",f)
  712. lr.BackgroundTransparency = 1
  713. lr.Position = UDim2.new(0,0,0,238)
  714. lr.Size = UDim2.new(0,15,0,15)
  715. lr.Text = "18"
  716. lr.TextColor3 = Color3.new(200/255,200/255,200/255)
  717. local ls = Instance.new("TextLabel",f)
  718. ls.BackgroundTransparency = 1
  719. ls.Position = UDim2.new(0,0,0,252)
  720. ls.Size = UDim2.new(0,15,0,15)
  721. ls.Text = "19"
  722. ls.TextColor3 = Color3.new(200/255,200/255,200/255)
  723. local lt = Instance.new("TextLabel",f)
  724. lt.BackgroundTransparency = 1
  725. lt.Position = UDim2.new(0,0,0,266)
  726. lt.Size = UDim2.new(0,15,0,15)
  727. lt.Text = "20"
  728. lt.TextColor3 = Color3.new(200/255,200/255,200/255)
  729. local lu = Instance.new("TextLabel",f)
  730. lu.BackgroundTransparency = 1
  731. lu.Position = UDim2.new(0,0,0,280)
  732. lu.Size = UDim2.new(0,15,0,15)
  733. lu.Text = "21"
  734. lu.TextColor3 = Color3.new(200/255,200/255,200/255)
  735. local lv = Instance.new("TextLabel",f)
  736. lv.BackgroundTransparency = 1
  737. lv.Position = UDim2.new(0,0,0,294)
  738. lv.Size = UDim2.new(0,15,0,15)
  739. lv.Text = "22"
  740. lv.TextColor3 = Color3.new(200/255,200/255,200/255)
  741. local lw = Instance.new("TextLabel",f)
  742. lw.BackgroundTransparency = 1
  743. lw.Position = UDim2.new(0,0,0,308)
  744. lw.Size = UDim2.new(0,15,0,15)
  745. lw.Text = "23"
  746. lw.TextColor3 = Color3.new(200/255,200/255,200/255)
  747. local lx = Instance.new("TextLabel",f)
  748. lx.BackgroundTransparency = 1
  749. lx.Position = UDim2.new(0,0,0,322)
  750. lx.Size = UDim2.new(0,15,0,15)
  751. lx.Text = "24"
  752. lx.TextColor3 = Color3.new(200/255,200/255,200/255)
  753. local ly = Instance.new("TextLabel",f)
  754. ly.BackgroundTransparency = 1
  755. ly.Position = UDim2.new(0,0,0,336)
  756. ly.Size = UDim2.new(0,15,0,15)
  757. ly.Text = "25"
  758. ly.TextColor3 = Color3.new(200/255,200/255,200/255)
  759. local lz = Instance.new("TextLabel",f)
  760. lz.BackgroundTransparency = 1
  761. lz.Position = UDim2.new(0,0,0,350)
  762. lz.Size = UDim2.new(0,15,0,15)
  763. lz.Text = "26"
  764. lz.TextColor3 = Color3.new(200/255,200/255,200/255)
  765. local exitbutton = Instance.new("TextButton",f)
  766. exitbutton.BackgroundColor3 = Color3.new(0,0,0)
  767. exitbutton.BorderColor3 = Color3.new(200/255,200/255,200/255)
  768. exitbutton.Position = UDim2.new(0,423,0,403)
  769. exitbutton.Size = UDim2.new(0,75,0,25)
  770. exitbutton.Text = "Exit"
  771. exitbutton.TextColor3 = Color3.new(200/255,200/255,200/255)
  772. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = false
  773. local function run()
  774. loadstring(tb.Text)()
  775. end
  776. button.MouseButton1Down:connect(run)
  777. local function exit()
  778. game.Players[Admin].PlayerGui.ScreenGui.ScriptBuilder:Destroy()
  779. game.Players[Admin].PlayerGui.ScreenGui.Frame.TextButton.Visible = true
  780. end
  781. exitbutton.MouseButton1Down:connect(exit)
  782. elseif tb2.Text == "trollface" then
  783. local player = game.Players:FindFirstChild(tb1.Text)
  784. if player ~= nil then
  785. local b = Instance.new("BillboardGui",player.Character.Head)
  786. b.Size = UDim2.new(1.75,0,1.75,0)
  787. b.StudsOffset = Vector3.new(-0.65,1,0)
  788. b.AlwaysOnTop = true
  789. local i = Instance.new("ImageLabel", b)
  790. i.Size = UDim2.new(1.75,0,1.75,0)
  791. i.BackgroundTransparency = 1
  792. i.Image = "http://www.roblox.com/asset/?id=61740850"
  793. end
  794. elseif tb2.Text == "megusta" then
  795. local player = game.Players:FindFirstChild(tb1.Text)
  796. if player ~= nil then
  797. local b = Instance.new("BillboardGui",player.Character.Head)
  798. b.Size = UDim2.new(1.75,0,1.75,0)
  799. b.StudsOffset = Vector3.new(-0.65,1,0)
  800. b.AlwaysOnTop = true
  801. local i = Instance.new("ImageLabel", b)
  802. i.Size = UDim2.new(1.75,0,1.75,0)
  803. i.BackgroundTransparency = 1
  804. i.Image = "http://www.roblox.com/asset/?id=47594659"
  805. end
  806. elseif tb2.Text == "lol" then
  807. local player = game.Players:FindFirstChild(tb1.Text)
  808. if player ~= nil then
  809. local b = Instance.new("BillboardGui",player.Character.Head)
  810. b.Size = UDim2.new(1.75,0,1.75,0)
  811. b.StudsOffset = Vector3.new(-0.65,1,0)
  812. b.AlwaysOnTop = true
  813. local i = Instance.new("ImageLabel", b)
  814. i.Size = UDim2.new(1.75,0,1.75,0)
  815. i.BackgroundTransparency = 1
  816. i.Image = "http://www.roblox.com/asset/?id=48293007"
  817. end
  818. elseif tb2.Text == "sparta" then
  819. local player = game.Players:FindFirstChild(tb1.Text)
  820. if player ~= nil then
  821. local b = Instance.new("BillboardGui",player.Character.Head)
  822. b.Size = UDim2.new(1.75,0,1.75,0)
  823. b.StudsOffset = Vector3.new(-0.65,1,0)
  824. b.AlwaysOnTop = true
  825. local i = Instance.new("ImageLabel", b)
  826. i.Size = UDim2.new(1.75,0,1.75,0)
  827. i.BackgroundTransparency = 1
  828. i.Image = "http://www.roblox.com/asset/?id=74142203"
  829. end
  830. elseif tb2.Text == "retard" then
  831. local player = game.Players:FindFirstChild(tb1.Text)
  832. if player ~= nil then
  833. local b = Instance.new("BillboardGui",player.Character.Head)
  834. b.Size = UDim2.new(1.75,0,1.75,0)
  835. b.StudsOffset = Vector3.new(-0.65,1,0)
  836. b.AlwaysOnTop = true
  837. local i = Instance.new("ImageLabel", b)
  838. i.Size = UDim2.new(1.75,0,1.75,0)
  839. i.BackgroundTransparency = 1
  840. i.Image = "http://www.roblox.com/asset/?id=60298055"
  841. end
  842. elseif tb2.Text == "ujelly" then
  843. local player = game.Players:FindFirstChild(tb1.Text)
  844. if player ~= nil then
  845. local b = Instance.new("BillboardGui",player.Character.Head)
  846. b.Size = UDim2.new(1.75,0,1.75,0)
  847. b.StudsOffset = Vector3.new(-0.65,1,0)
  848. b.AlwaysOnTop = true
  849. local i = Instance.new("ImageLabel", b)
  850. i.Size = UDim2.new(1.75,0,1.75,0)
  851. i.BackgroundTransparency = 1
  852. i.Image = "http://www.roblox.com/asset/?id=48989071"
  853. end
  854. elseif tb2.Text == "horse" then
  855. local player = game.Players:FindFirstChild(tb1.Text)
  856. if player ~= nil then
  857. local b = Instance.new("BillboardGui",player.Character.Head)
  858. b.Size = UDim2.new(1.75,0,1.75,0)
  859. b.StudsOffset = Vector3.new(-0.65,1,0)
  860. b.AlwaysOnTop = true
  861. local i = Instance.new("ImageLabel", b)
  862. i.Size = UDim2.new(1.75,0,1.75,0)
  863. i.BackgroundTransparency = 1
  864. i.Image = "http://www.roblox.com/asset/?id=62079221"
  865. end
  866. elseif tb2.Text == "king" then
  867. local player = game.Players:FindFirstChild(tb1.Text)
  868. if player ~= nil then
  869. local b = Instance.new("BillboardGui",player.Character.Head)
  870. b.Size = UDim2.new(1.75,0,1.75,0)
  871. b.StudsOffset = Vector3.new(-1,1,0)
  872. b.AlwaysOnTop = true
  873. local i = Instance.new("ImageLabel",b)
  874. i.Size = UDim2.new(1.75,0,1.75,0)
  875. i.BackgroundTransparency = 1
  876. i.Image = "http://www.roblox.com/asset/?id=41262118"
  877. end
  878. elseif tb2.Text == "weegee" then
  879. local player = game.Players:FindFirstChild(tb1.Text)
  880. if player ~= nil then
  881. local b = Instance.new("BillboardGui",player.Character.Head)
  882. b.Size = UDim2.new(1.75,0,1.75,0)
  883. b.StudsOffset = Vector3.new(-0.7,1,0)
  884. b.AlwaysOnTop = true
  885. local i = Instance.new("ImageLabel",b)
  886. i.Size = UDim2.new(1.75,0,1.75,0)
  887. i.BackgroundTransparency = 1
  888. i.Image = "http://www.roblox.com/asset/?id=41262118"
  889. end
  890. elseif tb2.Text == "obama" then
  891. local player = game.Players:FindFirstChild(tb1.Text)
  892. if player ~= nil then
  893. local b = Instance.new("BillboardGui",player.Character.Head)
  894. b.Size = UDim2.new(1.75,0,1.75,0)
  895. b.StudsOffset = Vector3.new(-0.65,1,0)
  896. b.AlwaysOnTop = true
  897. local i = Instance.new("ImageLabel", b)
  898. i.Size = UDim2.new(1.75,0,1.75,0)
  899. i.BackgroundTransparency = 1
  900. i.Image = "http://www.roblox.com/asset/?id=236222372"
  901. end
  902. elseif tb2.Text == "billymays" then
  903. local player = game.Players:FindFirstChild(tb1.Text)
  904. if player ~= nil then
  905. local b = Instance.new("BillboardGui",player.Character.Head)
  906. b.Size = UDim2.new(1.5,0,1.75,0)
  907. b.StudsOffset = Vector3.new(-0.33,1,0)
  908. b.AlwaysOnTop = true
  909. local i = Instance.new("ImageLabel", b)
  910. i.Size = UDim2.new(1.5,0,1.75,0)
  911. i.BackgroundTransparency = 1
  912. i.Image = "http://www.roblox.com/asset/?id=21463020"
  913. end
  914. elseif tb2.Text == "billnye" then
  915. local player = game.Players:FindFirstChild(tb1.Text)
  916. if player ~= nil then
  917. local b = Instance.new("BillboardGui",player.Character.Head)
  918. b.Size = UDim2.new(1.75,0,1.75,0)
  919. b.StudsOffset = Vector3.new(-0.7,1,0)
  920. b.AlwaysOnTop = true
  921. local i = Instance.new("ImageLabel",b)
  922. i.Size = UDim2.new(1.75,0,1.75,0)
  923. i.BackgroundTransparency = 1
  924. i.Image = "http://www.roblox.com/asset/?id=147337572"
  925. end
  926. elseif tb2.Text == "yeah" then
  927. local player = game.Players:FindFirstChild(tb1.Text)
  928. if player ~= nil then
  929. local b = Instance.new("BillboardGui",player.Character.Head)
  930. b.Size = UDim2.new(1.75,0,1.75,0)
  931. b.StudsOffset = Vector3.new(-0.65,0.8,0)
  932. b.AlwaysOnTop = true
  933. local i = Instance.new("ImageLabel", b)
  934. i.Size = UDim2.new(1.75,0,1.75,0)
  935. i.BackgroundTransparency = 1
  936. i.Image = "http://www.roblox.com/asset/?id=53646377"
  937. end
  938. elseif tb2.Text == "sad" then
  939. local player = game.Players:FindFirstChild(tb1.Text)
  940. if player ~= nil then
  941. local b = Instance.new("BillboardGui",player.Character.Head)
  942. b.Size = UDim2.new(1.75,0,1.75,0)
  943. b.StudsOffset = Vector3.new(-0.65,1,0)
  944. b.AlwaysOnTop = true
  945. local i = Instance.new("ImageLabel", b)
  946. i.Size = UDim2.new(1.75,0,1.75,0)
  947. i.BackgroundTransparency = 1
  948. i.Image = "http://www.roblox.com/asset/?id=53645378"
  949. end
  950. elseif tb2.Text == "sls" then
  951. local player = game.Players:FindFirstChild(tb1.Text)
  952. if player ~= nil then
  953. local b = Instance.new("BillboardGui",player.Character.Head)
  954. b.Size = UDim2.new(1.75,0,1.75,0)
  955. b.StudsOffset = Vector3.new(-0.65,1,0)
  956. b.AlwaysOnTop = true
  957. local i = Instance.new("ImageLabel", b)
  958. i.Size = UDim2.new(1.75,0,1.75,0)
  959. i.BackgroundTransparency = 1
  960. i.Image = "http://www.roblox.com/asset/?id=53646388"
  961. end
  962. elseif tb2.Text == "lin" then
  963. local player = game.Players:FindFirstChild(tb1.Text)
  964. if player ~= nil then
  965. local b = Instance.new("BillboardGui",player.Character.Head)
  966. b.Size = UDim2.new(1.75,0,1.75,0)
  967. b.StudsOffset = Vector3.new(-0.65,1,0)
  968. b.AlwaysOnTop = true
  969. local i = Instance.new("ImageLabel", b)
  970. i.Size = UDim2.new(1.75,0,1.75,0)
  971. i.BackgroundTransparency = 1
  972. i.Image = "http://www.roblox.com/asset/?id=48290678"
  973. end
  974. elseif tb2.Text == "sun" then
  975. local player = game.Players:FindFirstChild(tb1.Text)
  976. if player ~= nil then
  977. local b = Instance.new("BillboardGui",player.Character.Head)
  978. b.Size = UDim2.new(1.75,0,1.75,0)
  979. b.StudsOffset = Vector3.new(-0.65,1,0)
  980. b.AlwaysOnTop = true
  981. local i = Instance.new("ImageLabel", b)
  982. i.Size = UDim2.new(1.75,0,1.75,0)
  983. i.BackgroundTransparency = 1
  984. i.Image = "http://www.roblox.com/asset/?id=47596170"
  985. end
  986. end
  987. end
  988. tbutton.MouseButton1Down:connect(Execute)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement