Advertisement
Oscar55555

Untitled

Feb 27th, 2019
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.00 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152. -- Farewell Infortality.
  153. -- Version: 2.82
  154. -- Instances:
  155. local Template = Instance.new("ScreenGui")
  156. local Main = Instance.new("Frame")
  157. local ImageLabel = Instance.new("ImageLabel")
  158. local Ifyoudeletethenjustdontusethis = Instance.new("TextLabel")
  159. local NAME = Instance.new("TextLabel")
  160. local Code = Instance.new("TextBox")
  161. local Login = Instance.new("TextButton")
  162. local Deleteme = Instance.new("TextLabel")
  163. local Choosing = Instance.new("Frame")
  164. local ImageLabel_2 = Instance.new("ImageLabel")
  165. local Shake = Instance.new("TextButton")
  166. local TextLabel = Instance.new("TextLabel")
  167. local xBow = Instance.new("TextButton")
  168. local GearTools = Instance.new("Frame")
  169. local CustomGear = Instance.new("TextButton")
  170. local Title = Instance.new("TextLabel")
  171. local StamperTools = Instance.new("TextButton")
  172. local ToolStealer = Instance.new("TextButton")
  173. local InsertTool = Instance.new("TextButton")
  174. local Minigun = Instance.new("TextButton")
  175. local LaserRifle = Instance.new("TextButton")
  176. local DrawTool = Instance.new("TextButton")
  177. local CustomGearID = Instance.new("Frame")
  178. local Title_2 = Instance.new("TextLabel")
  179. local TextBox = Instance.new("TextBox")
  180. local DominusGhost = Instance.new("TextButton")
  181. local FloatingPad = Instance.new("TextButton")
  182. local Drage = Instance.new("TextButton")
  183. local DualBlades = Instance.new("TextButton")
  184. local Eyelaser = Instance.new("TextButton")
  185. local Knife = Instance.new("TextButton")
  186. local Lance = Instance.new("TextButton")
  187. local Lightsaber = Instance.new("TextButton")
  188. local MasterHand = Instance.new("TextButton")
  189. local Plane = Instance.new("TextButton")
  190. local Snowball = Instance.new("TextButton")
  191. local Staff = Instance.new("TextButton")
  192. local SuicideVest = Instance.new("TextButton")
  193. local TechnoGauntlet = Instance.new("TextButton")
  194. local Wand = Instance.new("TextButton")
  195. --Properties:
  196. Template.Name = "Template"
  197. Template.Parent = game.Workspace
  198.  
  199. Main.Name = "Main"
  200. Main.Parent = Template
  201. Main.Active = true
  202. Main.BackgroundColor3 = Color3.new(1, 1, 1)
  203. Main.Position = UDim2.new(0.251556695, 0, 0.322033912, 0)
  204. Main.Selectable = true
  205. Main.Size = UDim2.new(0, 429, 0, 238)
  206.  
  207. ImageLabel.Parent = Main
  208. ImageLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  209. ImageLabel.BackgroundTransparency = 1
  210. ImageLabel.Size = UDim2.new(0.133000001, 0, 1, 0)
  211. ImageLabel.Image = "rbxassetid://531703074"
  212.  
  213. Ifyoudeletethenjustdontusethis.Name = "If you delete then just dont use this..."
  214. Ifyoudeletethenjustdontusethis.Parent = ImageLabel
  215. Ifyoudeletethenjustdontusethis.BackgroundColor3 = Color3.new(1, 1, 1)
  216. Ifyoudeletethenjustdontusethis.BackgroundTransparency = 1
  217. Ifyoudeletethenjustdontusethis.Position = UDim2.new(42.5425415, 0, 0.907563031, 0)
  218. Ifyoudeletethenjustdontusethis.Size = UDim2.new(0, 89, 0, 16)
  219. Ifyoudeletethenjustdontusethis.Font = Enum.Font.SourceSans
  220. Ifyoudeletethenjustdontusethis.Text = "UI By Light_YT"
  221. Ifyoudeletethenjustdontusethis.TextSize = 14
  222.  
  223. NAME.Name = "NAME"
  224. NAME.Parent = ImageLabel
  225. NAME.BackgroundColor3 = Color3.new(1, 1, 1)
  226. NAME.BackgroundTransparency = 1
  227. NAME.Position = UDim2.new(2.00257635, 0, 0.159663871, 0)
  228. NAME.Size = UDim2.new(0, 200, 0, 50)
  229. NAME.Font = Enum.Font.SourceSans
  230. NAME.Text = "R35A EXPLOIT GUI"
  231. NAME.TextScaled = true
  232. NAME.TextSize = 14
  233. NAME.TextWrapped = true
  234.  
  235. Code.Name = "Code"
  236. Code.Parent = ImageLabel
  237. Code.BackgroundColor3 = Color3.new(0, 0, 0)
  238. Code.BackgroundTransparency = 0.40000000596046
  239. Code.BorderColor3 = Color3.new(0, 0, 1)
  240. Code.BorderSizePixel = 0
  241. Code.Position = UDim2.new(0, 114, 0, 99)
  242. Code.Size = UDim2.new(0, 200, 0, 40)
  243. Code.Font = Enum.Font.Bodoni
  244. Code.Text = "Gui ID (Given by the owner or a moderator)"
  245. Code.TextColor3 = Color3.new(1, 1, 0)
  246. Code.TextScaled = true
  247. Code.TextSize = 24
  248. Code.TextWrapped = true
  249.  
  250. Login.Name = "Login"
  251. Login.Parent = ImageLabel
  252. Login.BackgroundColor3 = Color3.new(1, 1, 1)
  253. Login.Position = UDim2.new(0, 114, 0, 171)
  254. Login.Size = UDim2.new(0, 200, 0, 51)
  255. Login.Style = Enum.ButtonStyle.RobloxRoundDefaultButton
  256. Login.Font = Enum.Font.ArialBold
  257. Login.Text = "Submit"
  258. Login.TextColor3 = Color3.new(1, 1, 0)
  259. Login.TextScaled = true
  260. Login.TextSize = 12
  261. Login.TextWrapped = true
  262.  
  263. Deleteme.Name = "Delete me"
  264. Deleteme.Parent = ImageLabel
  265. Deleteme.BackgroundColor3 = Color3.new(1, 1, 1)
  266. Deleteme.BackgroundTransparency = 1
  267. Deleteme.Size = UDim2.new(0, 429, 0, 50)
  268. Deleteme.Font = Enum.Font.SourceSans
  269. Deleteme.Text = "Have Fun"
  270. Deleteme.TextScaled = true
  271. Deleteme.TextSize = 14
  272. Deleteme.TextWrapped = true
  273.  
  274. Choosing.Name = "Choosing"
  275. Choosing.Parent = Template
  276. Choosing.Active = true
  277. Choosing.BackgroundColor3 = Color3.new(1, 1, 1)
  278. Choosing.Position = UDim2.new(0.191780806, 0, 0.167608291, 0)
  279. Choosing.Selectable = true
  280. Choosing.Size = UDim2.new(0, 525, 0, 390)
  281. Choosing.Visible = false
  282.  
  283. ImageLabel_2.Parent = Choosing
  284. ImageLabel_2.BackgroundColor3 = Color3.new(1, 1, 1)
  285. ImageLabel_2.BackgroundTransparency = 1
  286. ImageLabel_2.Size = UDim2.new(0.133000001, 0, 1, 0)
  287. ImageLabel_2.Image = "rbxassetid://531703074"
  288.  
  289. Shake.Name = "Shake"
  290. Shake.Parent = Choosing
  291. Shake.BackgroundColor3 = Color3.new(1, 1, 1)
  292. Shake.BorderColor3 = Color3.new(0, 0, 0)
  293. Shake.Position = UDim2.new(0.183469862, 0, 0.211366087, 0)
  294. Shake.Size = UDim2.new(0, 90, 0, 25)
  295. Shake.Font = Enum.Font.SourceSans
  296. Shake.Text = "Head Shake (Buggy)"
  297. Shake.TextScaled = true
  298. Shake.TextSize = 14
  299. Shake.TextWrapped = true
  300.  
  301. TextLabel.Parent = Choosing
  302. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  303. TextLabel.BackgroundTransparency = 1
  304. TextLabel.Position = UDim2.new(0.0914285779, 0, 0, 0)
  305. TextLabel.Size = UDim2.new(0, 429, 0, 50)
  306. TextLabel.Font = Enum.Font.SourceSans
  307. TextLabel.Text = "Scripts"
  308. TextLabel.TextScaled = true
  309. TextLabel.TextSize = 14
  310. TextLabel.TextWrapped = true
  311.  
  312. xBow.Name = "xBow"
  313. xBow.Parent = Choosing
  314. xBow.BackgroundColor3 = Color3.new(1, 1, 1)
  315. xBow.BorderColor3 = Color3.new(0, 0, 0)
  316. xBow.Position = UDim2.new(0, 96, 0, 306)
  317. xBow.Size = UDim2.new(0, 90, 0, 25)
  318. xBow.ZIndex = 2
  319. xBow.Font = Enum.Font.SourceSans
  320. xBow.Text = "xBow"
  321. xBow.TextScaled = true
  322. xBow.TextSize = 14
  323. xBow.TextWrapped = true
  324.  
  325. GearTools.Name = "Gear/Tools"
  326. GearTools.Parent = Choosing
  327. GearTools.BackgroundColor3 = Color3.new(0, 0, 0)
  328. GearTools.BorderColor3 = Color3.new(0, 1, 0)
  329. GearTools.BorderSizePixel = 3
  330. GearTools.Position = UDim2.new(0.75999999, 3, 0, 0)
  331. GearTools.Size = UDim2.new(0.243809521, -3, 0.41538462, 0)
  332. GearTools.ZIndex = 2
  333.  
  334. CustomGear.Name = "Custom Gear"
  335. CustomGear.Parent = GearTools
  336. CustomGear.BackgroundColor3 = Color3.new(0, 0, 0)
  337. CustomGear.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  338. CustomGear.BorderSizePixel = 3
  339. CustomGear.Position = UDim2.new(0, 0, 0, 33)
  340. CustomGear.Size = UDim2.new(0.504000008, 0, 0, 30)
  341. CustomGear.ZIndex = 2
  342. CustomGear.Font = Enum.Font.SourceSans
  343. CustomGear.Text = "Custom Gear"
  344. CustomGear.TextColor3 = Color3.new(1, 1, 1)
  345. CustomGear.TextScaled = true
  346. CustomGear.TextSize = 14
  347. CustomGear.TextWrapped = true
  348.  
  349. Title.Name = "Title"
  350. Title.Parent = GearTools
  351. Title.BackgroundColor3 = Color3.new(0, 0, 0)
  352. Title.BorderColor3 = Color3.new(0, 1, 0)
  353. Title.BorderSizePixel = 3
  354. Title.Size = UDim2.new(1, 0, 0, 30)
  355. Title.ZIndex = 2
  356. Title.Font = Enum.Font.SourceSansBold
  357. Title.Text = "Gear/Tools"
  358. Title.TextColor3 = Color3.new(1, 1, 1)
  359. Title.TextSize = 14
  360. Title.TextWrapped = true
  361.  
  362. StamperTools.Name = "Stamper Tools"
  363. StamperTools.Parent = GearTools
  364. StamperTools.BackgroundColor3 = Color3.new(0, 0, 0)
  365. StamperTools.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  366. StamperTools.BorderSizePixel = 3
  367. StamperTools.Position = UDim2.new(0.5, 3, 0, 33)
  368. StamperTools.Size = UDim2.new(0.5, -3, 0, 30)
  369. StamperTools.ZIndex = 2
  370. StamperTools.Font = Enum.Font.SourceSans
  371. StamperTools.Text = "Stamper Tools"
  372. StamperTools.TextColor3 = Color3.new(1, 1, 1)
  373. StamperTools.TextScaled = true
  374. StamperTools.TextSize = 14
  375. StamperTools.TextWrapped = true
  376.  
  377. ToolStealer.Name = "Tool Stealer"
  378. ToolStealer.Parent = GearTools
  379. ToolStealer.BackgroundColor3 = Color3.new(0, 0, 0)
  380. ToolStealer.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  381. ToolStealer.BorderSizePixel = 3
  382. ToolStealer.Position = UDim2.new(0, 0, 0, 66)
  383. ToolStealer.Size = UDim2.new(0.5, 0, 0, 30)
  384. ToolStealer.ZIndex = 2
  385. ToolStealer.Font = Enum.Font.SourceSans
  386. ToolStealer.Text = "Tool Stealer"
  387. ToolStealer.TextColor3 = Color3.new(1, 1, 1)
  388. ToolStealer.TextScaled = true
  389. ToolStealer.TextSize = 14
  390. ToolStealer.TextWrapped = true
  391.  
  392. InsertTool.Name = "Insert Tool"
  393. InsertTool.Parent = GearTools
  394. InsertTool.BackgroundColor3 = Color3.new(0, 0, 0)
  395. InsertTool.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  396. InsertTool.BorderSizePixel = 3
  397. InsertTool.Position = UDim2.new(0.5, 3, 0, 66)
  398. InsertTool.Size = UDim2.new(0.5, -3, 0, 30)
  399. InsertTool.ZIndex = 2
  400. InsertTool.Font = Enum.Font.SourceSans
  401. InsertTool.Text = "Insert Tool"
  402. InsertTool.TextColor3 = Color3.new(1, 1, 1)
  403. InsertTool.TextScaled = true
  404. InsertTool.TextSize = 14
  405. InsertTool.TextWrapped = true
  406.  
  407. Minigun.Name = "Minigun"
  408. Minigun.Parent = GearTools
  409. Minigun.BackgroundColor3 = Color3.new(0, 0, 0)
  410. Minigun.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  411. Minigun.BorderSizePixel = 3
  412. Minigun.Position = UDim2.new(0, 0, 0, 99)
  413. Minigun.Size = UDim2.new(0.5, 0, 0, 30)
  414. Minigun.ZIndex = 2
  415. Minigun.Font = Enum.Font.SourceSans
  416. Minigun.Text = "Minigun"
  417. Minigun.TextColor3 = Color3.new(1, 1, 1)
  418. Minigun.TextScaled = true
  419. Minigun.TextSize = 14
  420. Minigun.TextWrapped = true
  421.  
  422. LaserRifle.Name = "Laser Rifle"
  423. LaserRifle.Parent = GearTools
  424. LaserRifle.BackgroundColor3 = Color3.new(0, 0, 0)
  425. LaserRifle.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  426. LaserRifle.BorderSizePixel = 3
  427. LaserRifle.Position = UDim2.new(0.492000014, 3, 0.0328437686, 99)
  428. LaserRifle.Size = UDim2.new(0.5, -3, 0, 30)
  429. LaserRifle.ZIndex = 2
  430. LaserRifle.Font = Enum.Font.SourceSans
  431. LaserRifle.Text = "Laser Rifle"
  432. LaserRifle.TextColor3 = Color3.new(1, 1, 1)
  433. LaserRifle.TextScaled = true
  434. LaserRifle.TextSize = 14
  435. LaserRifle.TextWrapped = true
  436.  
  437. DrawTool.Name = "Draw Tool"
  438. DrawTool.Parent = GearTools
  439. DrawTool.BackgroundColor3 = Color3.new(0, 0, 0)
  440. DrawTool.BorderColor3 = Color3.new(0.937255, 0.027451, 1)
  441. DrawTool.BorderSizePixel = 3
  442. DrawTool.Position = UDim2.new(0, 0, 0, 132)
  443. DrawTool.Size = UDim2.new(0.5, 0, 0, 30)
  444. DrawTool.ZIndex = 2
  445. DrawTool.Font = Enum.Font.SourceSans
  446. DrawTool.Text = "Draw Tool"
  447. DrawTool.TextColor3 = Color3.new(1, 1, 1)
  448. DrawTool.TextScaled = true
  449. DrawTool.TextSize = 14
  450. DrawTool.TextWrapped = true
  451.  
  452. CustomGearID.Name = "Custom Gear ID"
  453. CustomGearID.Parent = Choosing
  454. CustomGearID.BackgroundColor3 = Color3.new(0, 0, 0)
  455. CustomGearID.BorderColor3 = Color3.new(0.0627451, 1, 1)
  456. CustomGearID.BorderSizePixel = 3
  457. CustomGearID.Position = UDim2.new(0, 401, 0, 162)
  458. CustomGearID.Size = UDim2.new(0.239999995, 0, 0, 63)
  459.  
  460. Title_2.Name = "Title"
  461. Title_2.Parent = CustomGearID
  462. Title_2.BackgroundColor3 = Color3.new(0, 0, 0)
  463. Title_2.BorderColor3 = Color3.new(0.0627451, 1, 1)
  464. Title_2.BorderSizePixel = 3
  465. Title_2.Position = UDim2.new(0.00867877156, 0, 0, 0)
  466. Title_2.Size = UDim2.new(1, 0, 0, 30)
  467. Title_2.Font = Enum.Font.SourceSansBold
  468. Title_2.Text = "Custom Gear ID"
  469. Title_2.TextColor3 = Color3.new(1, 1, 1)
  470. Title_2.TextSize = 14
  471. Title_2.TextWrapped = true
  472.  
  473. TextBox.Parent = CustomGearID
  474. TextBox.BackgroundColor3 = Color3.new(0, 0, 0)
  475. TextBox.BorderColor3 = Color3.new(0.0627451, 1, 1)
  476. TextBox.BorderSizePixel = 3
  477. TextBox.Position = UDim2.new(0, 0, 0.5, 0)
  478. TextBox.Size = UDim2.new(1, 0, 0.5, 0)
  479. TextBox.Font = Enum.Font.SourceSans
  480. TextBox.Text = "108149175"
  481. TextBox.TextColor3 = Color3.new(1, 1, 1)
  482. TextBox.TextSize = 14
  483.  
  484. DominusGhost.Name = "Dominus Ghost"
  485. DominusGhost.Parent = Choosing
  486. DominusGhost.BackgroundColor3 = Color3.new(1, 1, 1)
  487. DominusGhost.BorderColor3 = Color3.new(0, 0, 0)
  488. DominusGhost.Position = UDim2.new(0, 96, 0, 107)
  489. DominusGhost.Size = UDim2.new(0, 90, 0, 25)
  490. DominusGhost.ZIndex = 2
  491. DominusGhost.Font = Enum.Font.SourceSans
  492. DominusGhost.Text = "Dominus Ghost"
  493. DominusGhost.TextScaled = true
  494. DominusGhost.TextSize = 14
  495. DominusGhost.TextWrapped = true
  496.  
  497. FloatingPad.Name = "Floating Pad"
  498. FloatingPad.Parent = Choosing
  499. FloatingPad.BackgroundColor3 = Color3.new(1, 1, 1)
  500. FloatingPad.BorderColor3 = Color3.new(0, 0, 0)
  501. FloatingPad.Position = UDim2.new(0, 96, 0, 132)
  502. FloatingPad.Size = UDim2.new(0, 90, 0, 25)
  503. FloatingPad.ZIndex = 2
  504. FloatingPad.Font = Enum.Font.SourceSans
  505. FloatingPad.Text = "Floating Pad"
  506. FloatingPad.TextScaled = true
  507. FloatingPad.TextSize = 14
  508. FloatingPad.TextWrapped = true
  509.  
  510. Drage.Name = "Drage"
  511. Drage.Parent = Choosing
  512. Drage.BackgroundColor3 = Color3.new(1, 1, 1)
  513. Drage.BorderColor3 = Color3.new(0, 0, 0)
  514. Drage.Position = UDim2.new(0, 96, 0, 281)
  515. Drage.Size = UDim2.new(0, 90, 0, 25)
  516. Drage.ZIndex = 2
  517. Drage.Font = Enum.Font.SourceSans
  518. Drage.Text = "Drage"
  519. Drage.TextScaled = true
  520. Drage.TextSize = 14
  521. Drage.TextWrapped = true
  522.  
  523. DualBlades.Name = "Dual Blades"
  524. DualBlades.Parent = Choosing
  525. DualBlades.BackgroundColor3 = Color3.new(1, 1, 1)
  526. DualBlades.BorderColor3 = Color3.new(0, 0, 0)
  527. DualBlades.Position = UDim2.new(0.369523823, 3, 0.353846163, 66)
  528. DualBlades.Size = UDim2.new(0, 90, 0, 25)
  529. DualBlades.ZIndex = 2
  530. DualBlades.Font = Enum.Font.SourceSans
  531. DualBlades.Text = "Dual Blades"
  532. DualBlades.TextScaled = true
  533. DualBlades.TextSize = 14
  534. DualBlades.TextWrapped = true
  535.  
  536. Eyelaser.Name = "Eyelaser"
  537. Eyelaser.Parent = Choosing
  538. Eyelaser.BackgroundColor3 = Color3.new(1, 1, 1)
  539. Eyelaser.BorderColor3 = Color3.new(0, 0, 0)
  540. Eyelaser.Position = UDim2.new(0, 96, 0, 258)
  541. Eyelaser.Size = UDim2.new(0, 90, 0, 25)
  542. Eyelaser.ZIndex = 2
  543. Eyelaser.Font = Enum.Font.SourceSans
  544. Eyelaser.Text = "Eyelaser"
  545. Eyelaser.TextScaled = true
  546. Eyelaser.TextSize = 14
  547. Eyelaser.TextWrapped = true
  548.  
  549. Knife.Name = "Knife"
  550. Knife.Parent = Choosing
  551. Knife.BackgroundColor3 = Color3.new(1, 1, 1)
  552. Knife.BorderColor3 = Color3.new(0, 0, 0)
  553. Knife.Position = UDim2.new(0.176190481, 3, 0.214102581, 99)
  554. Knife.Size = UDim2.new(0, 90, 0, 25)
  555. Knife.ZIndex = 2
  556. Knife.Font = Enum.Font.SourceSans
  557. Knife.Text = "Knife"
  558. Knife.TextScaled = true
  559. Knife.TextSize = 14
  560. Knife.TextWrapped = true
  561.  
  562. Lance.Name = "Lance"
  563. Lance.Parent = Choosing
  564. Lance.BackgroundColor3 = Color3.new(1, 1, 1)
  565. Lance.BorderColor3 = Color3.new(0, 0, 0)
  566. Lance.Position = UDim2.new(0.36857146, 3, -0.13333334, 231)
  567. Lance.Size = UDim2.new(0, 90, 0, 25)
  568. Lance.ZIndex = 2
  569. Lance.Font = Enum.Font.SourceSans
  570. Lance.Text = "Lance"
  571. Lance.TextScaled = true
  572. Lance.TextSize = 14
  573. Lance.TextWrapped = true
  574.  
  575. Lightsaber.Name = "Lightsaber"
  576. Lightsaber.Parent = Choosing
  577. Lightsaber.BackgroundColor3 = Color3.new(1, 1, 1)
  578. Lightsaber.BorderColor3 = Color3.new(0, 0, 0)
  579. Lightsaber.Position = UDim2.new(0, 197, 0, 306)
  580. Lightsaber.Size = UDim2.new(0, 90, 0, 25)
  581. Lightsaber.ZIndex = 2
  582. Lightsaber.Font = Enum.Font.SourceSans
  583. Lightsaber.Text = "Lightsaber"
  584. Lightsaber.TextScaled = true
  585. Lightsaber.TextSize = 14
  586. Lightsaber.TextWrapped = true
  587.  
  588. MasterHand.Name = "Master Hand"
  589. MasterHand.Parent = Choosing
  590. MasterHand.BackgroundColor3 = Color3.new(1, 1, 1)
  591. MasterHand.BorderColor3 = Color3.new(0, 0, 0)
  592. MasterHand.Position = UDim2.new(0.368571401, 3, 0.253846169, 132)
  593. MasterHand.Size = UDim2.new(0, 90, 0, 25)
  594. MasterHand.ZIndex = 2
  595. MasterHand.Font = Enum.Font.SourceSans
  596. MasterHand.Text = "Master Hand"
  597. MasterHand.TextScaled = true
  598. MasterHand.TextSize = 14
  599. MasterHand.TextWrapped = true
  600.  
  601. Plane.Name = "Plane"
  602. Plane.Parent = Choosing
  603. Plane.BackgroundColor3 = Color3.new(1, 1, 1)
  604. Plane.BorderColor3 = Color3.new(0, 0, 0)
  605. Plane.Position = UDim2.new(0, 96, 0, 157)
  606. Plane.Size = UDim2.new(0, 90, 0, 25)
  607. Plane.ZIndex = 2
  608. Plane.Font = Enum.Font.SourceSans
  609. Plane.Text = "Plane"
  610. Plane.TextScaled = true
  611. Plane.TextSize = 14
  612. Plane.TextWrapped = true
  613.  
  614. Snowball.Name = "Snowball"
  615. Snowball.Parent = Choosing
  616. Snowball.BackgroundColor3 = Color3.new(1, 1, 1)
  617. Snowball.BorderColor3 = Color3.new(0, 0, 0)
  618. Snowball.Position = UDim2.new(0.36857143, 3, 0.14871794, 198)
  619. Snowball.Size = UDim2.new(0, 90, 0, 25)
  620. Snowball.ZIndex = 2
  621. Snowball.Font = Enum.Font.SourceSans
  622. Snowball.Text = "Snowball"
  623. Snowball.TextScaled = true
  624. Snowball.TextSize = 14
  625. Snowball.TextWrapped = true
  626.  
  627. Staff.Name = "Staff"
  628. Staff.Parent = Choosing
  629. Staff.BackgroundColor3 = Color3.new(1, 1, 1)
  630. Staff.BorderColor3 = Color3.new(0, 0, 0)
  631. Staff.Position = UDim2.new(0, 197, 0, 154)
  632. Staff.Size = UDim2.new(0, 90, 0, 25)
  633. Staff.ZIndex = 2
  634. Staff.Font = Enum.Font.SourceSans
  635. Staff.Text = "Staff"
  636. Staff.TextScaled = true
  637. Staff.TextSize = 14
  638. Staff.TextWrapped = true
  639.  
  640. SuicideVest.Name = "Suicide Vest"
  641. SuicideVest.Parent = Choosing
  642. SuicideVest.BackgroundColor3 = Color3.new(1, 1, 1)
  643. SuicideVest.BorderColor3 = Color3.new(0, 0, 0)
  644. SuicideVest.Position = UDim2.new(0, 96, 0, 233)
  645. SuicideVest.Size = UDim2.new(0, 90, 0, 25)
  646. SuicideVest.ZIndex = 2
  647. SuicideVest.Font = Enum.Font.SourceSans
  648. SuicideVest.Text = "Suicide Vest"
  649. SuicideVest.TextScaled = true
  650. SuicideVest.TextSize = 14
  651. SuicideVest.TextWrapped = true
  652.  
  653. TechnoGauntlet.Name = "Techno Gauntlet"
  654. TechnoGauntlet.Parent = Choosing
  655. TechnoGauntlet.BackgroundColor3 = Color3.new(1, 1, 1)
  656. TechnoGauntlet.BorderColor3 = Color3.new(0, 0, 0)
  657. TechnoGauntlet.Position = UDim2.new(0.176190466, 3, 0.110256419, 165)
  658. TechnoGauntlet.Size = UDim2.new(0, 90, 0, 25)
  659. TechnoGauntlet.ZIndex = 2
  660. TechnoGauntlet.Font = Enum.Font.SourceSans
  661. TechnoGauntlet.Text = "Techno Gauntlet"
  662. TechnoGauntlet.TextScaled = true
  663. TechnoGauntlet.TextSize = 14
  664. TechnoGauntlet.TextWrapped = true
  665.  
  666. Wand.Name = "Wand"
  667. Wand.Parent = Choosing
  668. Wand.BackgroundColor3 = Color3.new(1, 1, 1)
  669. Wand.BorderColor3 = Color3.new(0, 0, 0)
  670. Wand.Position = UDim2.new(0.370432734, 3, 0.635553122, 33)
  671. Wand.Size = UDim2.new(0, 90, 0, 25)
  672. Wand.ZIndex = 2
  673. Wand.Font = Enum.Font.SourceSans
  674. Wand.Text = "Wand"
  675. Wand.TextScaled = true
  676. Wand.TextSize = 14
  677. Wand.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement