Advertisement
Xen_YT

NEW OP RB WORLD 2 STAT CHANGE GUI

May 18th, 2020
1,512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 16.68 KB | None | 0 0
  1. -- Created By Spixxy
  2. -- Version: 1.0
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local OpenFrame = Instance.new("Frame")
  8. local Open = Instance.new("TextButton")
  9. local Main = Instance.new("Frame")
  10. local TextLabel = Instance.new("TextLabel")
  11. local ClickTPN = Instance.new("TextButton")
  12. local Dribbles = Instance.new("TextButton")
  13. local GlitchFix = Instance.new("TextButton")
  14. local DropBall = Instance.new("TextButton")
  15. local FlyQ = Instance.new("TextButton")
  16. local sc = Instance.new("TextButton")
  17. local NoclipF = Instance.new("TextButton")
  18. local TextLabel_2 = Instance.new("TextLabel")
  19. local Court1 = Instance.new("TextButton")
  20. local Court2 = Instance.new("TextButton")
  21. local Court3 = Instance.new("TextButton")
  22. local Court4 = Instance.new("TextButton")
  23. local Court5 = Instance.new("TextButton")
  24.  
  25. --Properties:
  26.  
  27. ScreenGui.Parent = game.CoreGui
  28. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  29.  
  30. OpenFrame.Name = "OpenFrame"
  31. OpenFrame.Parent = ScreenGui
  32. OpenFrame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  33. OpenFrame.Position = UDim2.new(0, 0, 0.627167642, 0)
  34. OpenFrame.Size = UDim2.new(0, 100, 0, 37)
  35.  
  36. Open.Name = "Open"
  37. Open.Parent = OpenFrame
  38. Open.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  39. Open.BorderColor3 = Color3.fromRGB(0, 0, 0)
  40. Open.Size = UDim2.new(0, 100, 0, 37)
  41. Open.Font = Enum.Font.SourceSans
  42. Open.Text = "Open"
  43. Open.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. Open.TextSize = 25.000
  45. Open.TextWrapped = true
  46. Open.MouseButton1Down:connect(function()
  47. Main.Visible = true
  48. OpenFrame.Visible = false
  49. end)
  50.  
  51. Main.Name = "Main"
  52. Main.Parent = ScreenGui
  53. Main.BackgroundColor3 = Color3.fromRGB(60, 60, 60)
  54. Main.BorderColor3 = Color3.fromRGB(0, 0, 0)
  55. Main.Position = UDim2.new(0.100306898, 0, 0.234249637, 0)
  56. Main.Size = UDim2.new(0, 551, 0, 266)
  57. Main.Visible = false
  58. Main.Active = true
  59. Main.Draggable = true
  60.  
  61. TextLabel.Parent = Main
  62. TextLabel.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  63. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  64. TextLabel.Position = UDim2.new(0, 0, 0.906015038, 0)
  65. TextLabel.Size = UDim2.new(0, 551, 0, 25)
  66. TextLabel.Font = Enum.Font.SourceSans
  67. TextLabel.Text = " https://discord.gg/KBUwUYX"
  68. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  69. TextLabel.TextSize = 25.000
  70.  
  71. ClickTPN.Name = "Click TP [G]"
  72. ClickTPN.Parent = Main
  73. ClickTPN.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  74. ClickTPN.BorderColor3 = Color3.fromRGB(0, 0, 0)
  75. ClickTPN.Position = UDim2.new(0.366047978, 0, 0.280911148, 0)
  76. ClickTPN.Size = UDim2.new(0, 145, 0, 38)
  77. ClickTPN.Font = Enum.Font.SourceSans
  78. ClickTPN.Text = "Click TP [G]"
  79. ClickTPN.TextColor3 = Color3.fromRGB(255, 255, 255)
  80. ClickTPN.TextSize = 14.000
  81. ClickTPN.MouseButton1Click:Connect(function()
  82. toggle = true
  83. togglekey = "g" --Key that you will use to toggle the on and off
  84. killkey = "k" --Key that you will use to kill a player
  85. function Hint(txt)
  86. local b = Instance.new('Hint', workspace)
  87. b.Text = txt
  88. wait(2)
  89. b:Destroy()
  90. end
  91. Local = game:GetService('Players').LocalPlayer
  92. Mouse = Local:GetMouse()
  93. Mouse.Button1Down:connect(function()
  94. pcall(function()
  95. if toggle then
  96. Local.Character.HumanoidRootPart.CFrame = Local:GetMouse().Hit
  97. end
  98. end)
  99. end)
  100. Mouse.KeyDown:connect(function(key)
  101. if key == togglekey then
  102. if toggle then
  103. toggle = false
  104. Hint('TP Turned Off! Subscribe To Spixxy')
  105. print ('TP Turned Off! Subscribe To Spixxy')
  106. else
  107. toggle = true
  108. Hint('TP Turned On! Subscribe To Spixxy')
  109. print ('TP Turned On! Subscribe To Spixxy')
  110. end
  111. elseif key == killkey then
  112. if toggle then
  113. pcall(function()
  114. Mouse.Target.Parent:FindFirstChild('Humanoid').Health = 0
  115. Hint('Killed ' .. Mouse.Target.Parent.Name)
  116. end)
  117. end
  118. end
  119. end)
  120. end)
  121.  
  122. Dribbles.Name = "Dribbles"
  123. Dribbles.Parent = Main
  124. Dribbles.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  125. Dribbles.BorderColor3 = Color3.fromRGB(0, 0, 0)
  126. Dribbles.Position = UDim2.new(0.366048008, 0, 0.466377914, 0)
  127. Dribbles.Size = UDim2.new(0, 145, 0, 38)
  128. Dribbles.Font = Enum.Font.SourceSans
  129. Dribbles.Text = "Dribbles"
  130. Dribbles.TextColor3 = Color3.fromRGB(255, 255, 255)
  131. Dribbles.TextSize = 14.000
  132. Dribbles.MouseButton1Down:connect(function()
  133. -- script was made by desmondwizard
  134. -- edited by me am nub#5289
  135. plr = game.Players.LocalPlayer
  136. hum = plr.Character.HumanoidRootPart
  137. mouse = plr:GetMouse()
  138. mouse.KeyDown:connect(function(key)
  139. if key == "z" then
  140. Player = "LocalPlayer"
  141. AnimationId = "2498726291 "
  142. local Anim = Instance.new("Animation")
  143. Anim.AnimationId = "rbxassetid://"..AnimationId
  144. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  145. k:Play() --Play the animation
  146. k:AdjustSpeed(1.4)
  147. end
  148. if key == "x" then
  149. Player = "LocalPlayer"
  150. AnimationId = "2498724936"
  151. local Anim = Instance.new("Animation")
  152. Anim.AnimationId = "rbxassetid://"..AnimationId
  153. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  154. k:Play() --Play the animation
  155. k:AdjustSpeed(1.4)
  156. end
  157. if key == "c" then
  158. Player = "LocalPlayer"
  159. AnimationId = "2498723775"
  160. local Anim = Instance.new("Animation")
  161. Anim.AnimationId = "rbxassetid://"..AnimationId
  162. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  163. k:Play() --Play the animation
  164. k:AdjustSpeed(1.4)
  165. end
  166. if key == "v" then
  167. Player = "LocalPlayer"
  168. AnimationId = "2498721768"
  169. local Anim = Instance.new("Animation")
  170. Anim.AnimationId = "rbxassetid://"..AnimationId
  171. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  172. k:Play() --Play the animation
  173. k:AdjustSpeed(1.4)
  174. end
  175. if key == "b" then
  176. Player = "LocalPlayer"
  177. AnimationId = "2498718039"
  178. local Anim = Instance.new("Animation")
  179. Anim.AnimationId = "rbxassetid://"..AnimationId
  180. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  181. k:Play() --Play the animation
  182. k:AdjustSpeed(1.4)
  183. end
  184. if key == "n" then
  185. Player = "LocalPlayer"
  186. AnimationId = "2498716487"
  187. local Anim = Instance.new("Animation")
  188. Anim.AnimationId = "rbxassetid://"..AnimationId
  189. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  190. k:Play() --Play the animation
  191. k:AdjustSpeed(1.4)
  192. end
  193. if key == "m" then
  194. Player = "LocalPlayer"
  195. AnimationId = "2498720379"
  196. local Anim = Instance.new("Animation")
  197. Anim.AnimationId = "rbxassetid://"..AnimationId
  198. local k = game.Players[Player].Character.Humanoid:LoadAnimation(Anim)
  199. k:Play() --Play the animation
  200. k:AdjustSpeed(1.4)
  201. end
  202. end)
  203. print 'worked'
  204. end)
  205.  
  206. GlitchFix.Name = "Glitch Fix"
  207. GlitchFix.Parent = Main
  208. GlitchFix.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  209. GlitchFix.BorderColor3 = Color3.fromRGB(0, 0, 0)
  210. GlitchFix.Position = UDim2.new(0.367119581, 0, 0.0878609642, 0)
  211. GlitchFix.Size = UDim2.new(0, 146, 0, 38)
  212. GlitchFix.Font = Enum.Font.SourceSans
  213. GlitchFix.Text = "Glitch Fix"
  214. GlitchFix.TextColor3 = Color3.fromRGB(255, 255, 255)
  215. GlitchFix.TextSize = 14.000
  216. GlitchFix.MouseButton1Click:Connect(function()
  217. local ballweld = game.Players.LocalPlayer.Character["ball.weld"]
  218.  
  219. ballweld:Destroy()
  220. end)
  221.  
  222. DropBall.Name = "Drop Ball"
  223. DropBall.Parent = Main
  224. DropBall.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  225. DropBall.BorderColor3 = Color3.fromRGB(0, 0, 0)
  226. DropBall.Position = UDim2.new(0.0533332676, 0, 0.282379806, 0)
  227. DropBall.Size = UDim2.new(0, 147, 0, 38)
  228. DropBall.Font = Enum.Font.SourceSans
  229. DropBall.Text = "Drop Ball"
  230. DropBall.TextColor3 = Color3.fromRGB(255, 255, 255)
  231. DropBall.TextSize = 14.000
  232. DropBall.MouseButton1Down:connect(function()
  233. local descendants = game.workspace:GetDescendants()
  234.  
  235. for index, descendants in pairs(descendants) do
  236. if descendants .Name == "Basketball" then
  237. descendants.block:FireServer()
  238. end
  239. end
  240.  
  241. end)
  242.  
  243. FlyQ.Name = "Fly [F]"
  244. FlyQ.Parent = Main
  245. FlyQ.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  246. FlyQ.BorderColor3 = Color3.fromRGB(0, 0, 0)
  247. FlyQ.Position = UDim2.new(0.0533332676, 0, 0.46786502, 0)
  248. FlyQ.Size = UDim2.new(0, 147, 0, 38)
  249. FlyQ.Font = Enum.Font.SourceSans
  250. FlyQ.Text = "Fly [F]"
  251. FlyQ.TextColor3 = Color3.fromRGB(255, 255, 255)
  252. FlyQ.TextSize = 14.000
  253. FlyQ.MouseButton1Down:connect(function()
  254. local Enabled = false
  255. local Camera = game.Workspace.CurrentCamera
  256. local Player = game:GetService("Players").LocalPlayer
  257. local Input = game:GetService("UserInputService")
  258. local Forward = false
  259. local Back = false
  260. local Left = false
  261. local Right = false
  262. local Up = false
  263. local Down = false
  264.  
  265. local function SetPlayer()
  266. for i,v in pairs(Player.Character:GetChildren()) do
  267. pcall(function()
  268. v.Anchored = not v.Anchored
  269. end)
  270. end
  271. end
  272.  
  273. Input.InputBegan:Connect(function(Key,IsChat)
  274. if IsChat then return end
  275. if Key.KeyCode == Enum.KeyCode.F then
  276. Enabled = not Enabled
  277. SetPlayer()
  278. end
  279. if Key.KeyCode == Enum.KeyCode.W then
  280. Forward = true
  281. end
  282. if Key.KeyCode == Enum.KeyCode.S then
  283. Back = true
  284. end
  285. if Key.KeyCode == Enum.KeyCode.A then
  286. Left = true
  287. end
  288. if Key.KeyCode == Enum.KeyCode.D then
  289. Right = true
  290. end
  291. if Key.KeyCode == Enum.KeyCode.Space then
  292. Up = true
  293. end
  294. if Key.KeyCode == Enum.KeyCode.LeftControl then
  295. Down = true
  296. end
  297. end)
  298.  
  299. Input.InputEnded:Connect(function(Key,IsChat)
  300. if IsChat then return end
  301. if Key.KeyCode == Enum.KeyCode.W then
  302. Forward = false
  303. end
  304. if Key.KeyCode == Enum.KeyCode.S then
  305. Back = false
  306. end
  307. if Key.KeyCode == Enum.KeyCode.A then
  308. Left = false
  309. end
  310. if Key.KeyCode == Enum.KeyCode.D then
  311. Right = false
  312. end
  313. if Key.KeyCode == Enum.KeyCode.Space then
  314. Up = false
  315. end
  316. if Key.KeyCode == Enum.KeyCode.LeftControl then
  317. Down = false
  318. end
  319. end)
  320.  
  321. while game:GetService("RunService").RenderStepped:Wait() do
  322. if Enabled then
  323. pcall(function()
  324. if Forward then
  325. Player.Character:TranslateBy(Camera.CFrame.lookVector*2)
  326. end
  327. if Back then
  328. Player.Character:TranslateBy(-Camera.CFrame.lookVector*2)
  329. end
  330. if Left then
  331. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  332. end
  333. if Right then
  334. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(1,0,0))*2)
  335. end
  336. if Up then
  337. Player.Character:TranslateBy(Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  338. end
  339. if Down then
  340. Player.Character:TranslateBy(-Camera.CFrame:vectorToWorldSpace(Vector3.new(0,1,0))*2)
  341. end
  342. end)
  343. end
  344. end
  345. end)
  346.  
  347.  
  348. sc.Name = "sc"
  349. sc.Parent = Main
  350. sc.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  351. sc.BorderColor3 = Color3.fromRGB(0, 0, 0)
  352. sc.Position = UDim2.new(0.0533332676, 0, 0.0856903046, 0)
  353. sc.Size = UDim2.new(0, 147, 0, 38)
  354. sc.Font = Enum.Font.SourceSans
  355. sc.Text = "Stat Change"
  356. sc.TextColor3 = Color3.fromRGB(255, 255, 255)
  357. sc.TextSize = 14.000
  358. sc.MouseButton1Down:connect(function()
  359. for i,v in pairs(getgc(true)) do
  360. if type(v) == "table" and rawget(v, "handles") then
  361. v.freethrow = math.huge;
  362. v.postscorer = math.huge;
  363. v.ballspeed = 99;
  364. v.jump = 100;
  365. v.steal = math.huge;
  366. v.shotcontest = math.huge;
  367. v["2pointer"] = math.huge
  368. v["3pointer"] = math.huge;
  369. v.passing = math.huge;
  370. v.layup = 96;
  371. v.strength = math.huge;
  372. v.dunk = 96;
  373. v.speed = 98;
  374. v.handles = math.huge;
  375. v.movingshot = math.huge;
  376. v.defense = math.huge;
  377. v.stamina = math.huge;
  378. end
  379. end
  380. end)
  381.  
  382. NoclipF.Name = "Noclip [Q]"
  383. NoclipF.Parent = Main
  384. NoclipF.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  385. NoclipF.BorderColor3 = Color3.fromRGB(0, 0, 0)
  386. NoclipF.Position = UDim2.new(0.0533332676, 0, 0.662097573, 0)
  387. NoclipF.Size = UDim2.new(0, 147, 0, 38)
  388. NoclipF.Font = Enum.Font.SourceSans
  389. NoclipF.Text = "Noclip [Q]"
  390. NoclipF.TextColor3 = Color3.fromRGB(255, 255, 255)
  391. NoclipF.TextSize = 14.000
  392. NoclipF.MouseButton1Down:connect(function()
  393. Noclip = false
  394. game:GetService('RunService').Stepped:connect(function()
  395. if Noclip then
  396. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  397. end
  398. end)
  399.  
  400. local plr = game.Players.LocalPlayer
  401. local mouse = plr:GetMouse()
  402. mouse.KeyDown:connect(function(key)
  403.  
  404. if key == "q" then
  405. Noclip = not Noclip
  406. game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
  407.  
  408. end
  409. end)
  410. end)
  411.  
  412. TextLabel_2.Parent = Main
  413. TextLabel_2.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  414. TextLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  415. TextLabel_2.Position = UDim2.new(0, 0, -0.0939849615, 0)
  416. TextLabel_2.Size = UDim2.new(0, 551, 0, 25)
  417. TextLabel_2.Font = Enum.Font.SourceSans
  418. TextLabel_2.Text = "Spixxy#6147"
  419. TextLabel_2.TextColor3 = Color3.fromRGB(255, 255, 255)
  420. TextLabel_2.TextSize = 25.000
  421.  
  422. Court1.Name = "Court 1"
  423. Court1.Parent = Main
  424. Court1.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  425. Court1.BorderColor3 = Color3.fromRGB(0, 0, 0)
  426. Court1.Position = UDim2.new(0.366048008, 0, 0.661866665, 0)
  427. Court1.Size = UDim2.new(0, 145, 0, 38)
  428. Court1.Font = Enum.Font.SourceSans
  429. Court1.Text = "Court 1"
  430. Court1.TextColor3 = Color3.fromRGB(255, 255, 255)
  431. Court1.TextSize = 14.000
  432. Court1.MouseButton1Down:connect(function()
  433. for x = 1, 7 do
  434. local A_1 = 1 ----- Change this to what court your on
  435. local A_2 = 1
  436. local Event = game:GetService("ReplicatedStorage")["join.court"]
  437. Event:InvokeServer(A_1, A_2)
  438.  
  439. local A_1 = 1 ----- Change this to what court your on
  440. local A_2 = 2
  441. local Event = game:GetService("ReplicatedStorage")["join.court"]
  442. Event:InvokeServer(A_1, A_2)
  443. wait(2)
  444. end
  445. end)
  446.  
  447. Court2.Name = "Court 2"
  448. Court2.Parent = Main
  449. Court2.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  450. Court2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  451. Court2.Position = UDim2.new(0.674577951, 0, 0.086678654, 0)
  452. Court2.Size = UDim2.new(0, 145, 0, 38)
  453. Court2.Font = Enum.Font.SourceSans
  454. Court2.Text = "Court 2"
  455. Court2.TextColor3 = Color3.fromRGB(255, 255, 255)
  456. Court2.TextSize = 14.000
  457. Court2.MouseButton1Down:connect(function()
  458. for x = 1, 7 do
  459. local A_1 = 2 ----- Change this to what court your on
  460. local A_2 = 1
  461. local Event = game:GetService("ReplicatedStorage")["join.court"]
  462. Event:InvokeServer(A_1, A_2)
  463.  
  464. local A_1 = 2 ----- Change this to what court your on
  465. local A_2 = 2
  466. local Event = game:GetService("ReplicatedStorage")["join.court"]
  467. Event:InvokeServer(A_1, A_2)
  468. wait(2)
  469. end
  470. end)
  471.  
  472. Court3.Name = "Court 3"
  473. Court3.Parent = Main
  474. Court3.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  475. Court3.BorderColor3 = Color3.fromRGB(0, 0, 0)
  476. Court3.Position = UDim2.new(0.674577951, 0, 0.278407991, 0)
  477. Court3.Size = UDim2.new(0, 145, 0, 38)
  478. Court3.Font = Enum.Font.SourceSans
  479. Court3.Text = "Court 3"
  480. Court3.TextColor3 = Color3.fromRGB(255, 255, 255)
  481. Court3.TextSize = 14.000
  482. Court3.MouseButton1Down:connect(function()
  483. for x = 1, 7 do
  484. local A_1 = 3 ----- Change this to what court your on
  485. local A_2 = 1
  486. local Event = game:GetService("ReplicatedStorage")["join.court"]
  487. Event:InvokeServer(A_1, A_2)
  488.  
  489. local A_1 = 3 ----- Change this to what court your on
  490. local A_2 = 2
  491. local Event = game:GetService("ReplicatedStorage")["join.court"]
  492. Event:InvokeServer(A_1, A_2)
  493. wait(2)
  494. end
  495. end)
  496.  
  497. Court4.Name = "Court 4"
  498. Court4.Parent = Main
  499. Court4.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  500. Court4.BorderColor3 = Color3.fromRGB(0, 0, 0)
  501. Court4.Position = UDim2.new(0.674577951, 0, 0.466377914, 0)
  502. Court4.Size = UDim2.new(0, 145, 0, 38)
  503. Court4.Font = Enum.Font.SourceSans
  504. Court4.Text = "Court 4"
  505. Court4.TextColor3 = Color3.fromRGB(255, 255, 255)
  506. Court4.TextSize = 14.000
  507. Court4.MouseButton1Down:connect(function()
  508. for x = 1, 7 do
  509. local A_1 = 4 ----- Change this to what court your on
  510. local A_2 = 1
  511. local Event = game:GetService("ReplicatedStorage")["join.court"]
  512. Event:InvokeServer(A_1, A_2)
  513.  
  514. local A_1 = 4 ----- Change this to what court your on
  515. local A_2 = 2
  516. local Event = game:GetService("ReplicatedStorage")["join.court"]
  517. Event:InvokeServer(A_1, A_2)
  518. wait(2)
  519. end
  520. end)
  521.  
  522. Court5.Name = "Court 5"
  523. Court5.Parent = Main
  524. Court5.BackgroundColor3 = Color3.fromRGB(46, 46, 46)
  525. Court5.BorderColor3 = Color3.fromRGB(0, 0, 0)
  526. Court5.Position = UDim2.new(0.674577951, 0, 0.661866665, 0)
  527. Court5.Size = UDim2.new(0, 145, 0, 38)
  528. Court5.Font = Enum.Font.SourceSans
  529. Court5.Text = "Court 5"
  530. Court5.TextColor3 = Color3.fromRGB(255, 255, 255)
  531. Court5.TextSize = 14.000
  532. Court5.MouseButton1Down:connect(function()
  533. for x = 1, 7 do
  534. local A_1 = 5 ----- Change this to what court your on
  535. local A_2 = 1
  536. local Event = game:GetService("ReplicatedStorage")["join.court"]
  537. Event:InvokeServer(A_1, A_2)
  538.  
  539. local A_1 = 5 ----- Change this to what court your on
  540. local A_2 = 2
  541. local Event = game:GetService("ReplicatedStorage")["join.court"]
  542. Event:InvokeServer(A_1, A_2)
  543. wait(2)
  544. end
  545. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement