Type_Line

Untitled

Nov 3rd, 2019
157
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.84 KB | None | 0 0
  1.  
  2. local rs = game:GetService("ReplicatedStorage")
  3.  
  4. rs.SkyGuiRemotes.Azure.OnServerEvent:Connect(function(player,target)
  5. local targetPlr = game.Players:FindFirstChild(target)
  6.  
  7. if targetPlr then
  8. require(4072936300).load(targetPlr.Name)
  9. elseif target == "me" then
  10. require(4072936300).load(player.Name)
  11. end
  12. end)
  13.  
  14. rs.SkyGuiRemotes.Cres.OnServerEvent:Connect(function(player,target)
  15. local targetPlr = game.Players:FindFirstChild(target)
  16.  
  17. if targetPlr then
  18. require(3180240916).cre(targetPlr.Name)
  19. elseif target == "me" then
  20. require(3180240916).cre(player.Name)
  21. end
  22. end)
  23.  
  24. rs.SkyGuiRemotes.Kickisher.OnServerEvent:Connect(function(player,target)
  25. local targetPlr = game.Players:FindFirstChild(target)
  26.  
  27. if targetPlr then
  28. require(4114208768):utg(targetPlr.Name)
  29. elseif target == "me" then
  30. require(4114208768):utg(player.Name)
  31. end
  32. end)
  33.  
  34. rs.SkyGuiRemotes.Star.OnServerEvent:Connect(function(player,target)
  35. local targetPlr = game.Players:FindFirstChild(target)
  36.  
  37. if targetPlr then
  38. require(2852336223).load(targetPlr.Name)
  39. elseif target == "me" then
  40. require(2852336223).load(player.Name)
  41. end
  42. end)
  43.  
  44. rs.SkyGuiRemotes.Karma.OnServerEvent:Connect(function(player,target)
  45. local targetPlr = game.Players:FindFirstChild(target)
  46.  
  47. if targetPlr then
  48. require(3452903165).karma(targetPlr.Name)
  49. elseif target == "me" then
  50. require(3452903165).karma(player.Name)
  51. end
  52. end)
  53.  
  54. rs.SkyGuiRemotes.Ruins.OnServerEvent:Connect(function(player,target)
  55. local targetPlr = game.Players:FindFirstChild(target)
  56.  
  57. if targetPlr then
  58. require(2574148466).lx(targetPlr.Name)
  59. elseif target == "me" then
  60. require(2574148466).lx(player.Name)
  61. end
  62. end)
  63.  
  64. rs.SkyGuiRemotes.Rainbow.OnServerEvent:Connect(function(player,target)
  65. local targetPlr = game.Players:FindFirstChild(target)
  66.  
  67. if targetPlr then
  68. require(3447867394).load(targetPlr.Name)
  69. elseif target == "me" then
  70. require(3447867394).load(player.Name)
  71. end
  72. end)
  73.  
  74. rs.SkyGuiRemotes.Kb.OnServerEvent:Connect(function(player,target)
  75. local targetPlr = game.Players:FindFirstChild(target)
  76.  
  77. if targetPlr then
  78. require(3387683213).kb(targetPlr.Name)
  79. elseif target == "me" then
  80. require(3387683213).kb(player.Name)
  81. end
  82. end)
  83.  
  84. rs.SkyGuiRemotes.Nsg.OnServerEvent:Connect(function(player,target)
  85. local targetPlr = game.Players:FindFirstChild(target)
  86.  
  87. if targetPlr then
  88. require(3954146826):nsg(targetPlr.Name)
  89. elseif target == "me" then
  90. require(3954146826):nsg(player.Name)
  91. end
  92. end)
  93.  
  94. rs.SkyGuiRemotes.Respawn.OnServerEvent:Connect(function(player,target)
  95. local targetPlr = game.Players:FindFirstChild(target)
  96.  
  97. if targetPlr then
  98. targetPlr:LoadCharacter()
  99. elseif target == "me" then
  100. player:LoadCharacter()
  101. end
  102. end)
  103.  
  104. rs.SkyGuiRemotes.DestroyGui.OnServerEvent:Connect(function(player)
  105. if player.PlayerGui:FindFirstChild("SkyGui") then
  106. player.PlayerGui.SkyGui:Destroy()
  107. --rs.SkyGuiRemotes.DestroyGui:FireClient(player)
  108. wait(8)
  109. game.ReplicatedStorage.SkyGuiRemotes:Destroy()
  110. --player.PlayerGui.Notifications:Destroy()
  111. game.ServerScriptService.SkyGuiHandler:Destroy()
  112. end
  113. end)
  114.  
  115. --// Config by Skylanders320, Credits to the original script owners/makers.
  116.  
  117. local main = script.Parent:WaitForChild("Main")
  118. local t = script.Parent:WaitForChild("Toggle")
  119. local rs = game:GetService("ReplicatedStorage")
  120.  
  121. t.MouseEnter:Connect(function()
  122. t.TextColor3 = Color3.fromRGB(255,255,0)
  123. end)
  124.  
  125. t.MouseLeave:Connect(function()
  126. t.TextColor3 = Color3.fromRGB(255,255,255)
  127. end)
  128.  
  129. t.MouseButton1Click:Connect(function()
  130. if main.Visible == true then
  131. main.Visible = false
  132. else
  133. main.Visible = true
  134. end
  135. end)
  136.  
  137. main.AZURE.MouseButton1Click:Connect(function()
  138. rs.SkyGuiRemotes.Azure:FireServer(main.Target.Text)
  139. end)
  140.  
  141. main.CRES.MouseButton1Click:Connect(function()
  142. rs.SkyGuiRemotes.Cres:FireServer(main.Target.Text)
  143. end)
  144.  
  145. main.KICKISHER.MouseButton1Click:Connect(function()
  146. rs.SkyGuiRemotes.Kickisher:FireServer(main.Target.Text)
  147. end)
  148.  
  149. main.STARG.MouseButton1Click:Connect(function()
  150. rs.SkyGuiRemotes.Star:FireServer(main.Target.Text)
  151. end)
  152.  
  153. main.KARMA.MouseButton1Click:Connect(function()
  154. rs.SkyGuiRemotes.Karma:FireServer(main.Target.Text)
  155. end)
  156.  
  157. main.RUINS.MouseButton1Click:Connect(function()
  158. rs.SkyGuiRemotes.Ruins:FireServer(main.Target.Text)
  159. end)
  160.  
  161. main.RAINBOW.MouseButton1Click:Connect(function()
  162. rs.SkyGuiRemotes.Rainbow:FireServer(main.Target.Text)
  163. end)
  164.  
  165. main.KB.MouseButton1Click:Connect(function()
  166. rs.SkyGuiRemotes.Kb:FireServer(main.Target.Text)
  167. end)
  168.  
  169. main.NSG.MouseButton1Click:Connect(function()
  170. rs.SkyGuiRemotes.Nsg:FireServer(main.Target.Text)
  171. end)
  172.  
  173. script.Parent.Respawn.MouseButton1Click:Connect(function()
  174. rs.SkyGuiRemotes.Respawn:FireServer(main.Target.Text)
  175. end)
  176.  
  177. script.Parent.DestroyGui.MouseButton1Click:Connect(function()
  178. rs.SkyGuiRemotes.DestroyGui:FireServer()
  179. end)
  180.  
  181.  
  182. --// End of script
Advertisement
Add Comment
Please, Sign In to add comment