Advertisement
ColorblindRBLX

Updated CSFE

Sep 7th, 2020
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.36 KB | None | 0 0
  1. -- Greeting
  2. local messagereq = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  3.        wait(0.7)
  4.        messagereq:FireServer(
  5.        "Welcome to CSFE, have a good time, kthxbai [Script made by Colorblind Roblox]",
  6.        "All"
  7.        )
  8.  
  9. -- I dont even know if it got broken too
  10.  
  11. -- Locals
  12. player = game.Players
  13. plr = player.LocalPlayer
  14. char = plr.Character
  15. place = game.PlaceId
  16. teleserv = game:GetService("TeleportService")
  17.  
  18.  
  19.  
  20. -- Music Configuration
  21. local ID_01 = "rbxassetid://2916432723" -- Fireproof - Pravokatif
  22. local ID_02 = "rbxassetid://5598295368" -- Neo Noman - RE:RUN
  23. local ID_03 = "rbxassetid://5619789556" -- PuffballsUnited - Ticket Please (Remix)
  24. local ID_04 = "rbxassetid://2022494174" -- HouseMasta - Super Mario 64 File Select Remix [Super Mario 63 - File Select]
  25. local ID_05 = "rbxassetid://3852221223" -- Powfu - Death Bed
  26. local ID_06 = "rbxassetid://1053226832" -- Above The Clouds - Elation
  27. local ID_07 = "rbxassetid://1530315320" -- Wii Shop Music
  28.  
  29. local music = Instance.new("Sound", game.Workspace)
  30. music.Volume = 4 -- 1 <-> 100
  31.  
  32. while true do
  33. -- Template
  34. music.SoundId = ID_01
  35. music:Play()
  36. music.Ended:Wait()
  37. music:Stop()
  38.  
  39. music.SoundId = ID_02
  40. music:Play()
  41. music.Ended:Wait()
  42. music:Stop()
  43.  
  44. music.SoundId = ID_03
  45. music:Play()
  46. music.Ended:Wait()
  47. music:Stop()
  48.  
  49. music.SoundId = ID_04
  50. music:Play()
  51. music.Ended:Wait()
  52. music:Stop()
  53.  
  54. music.SoundId = ID_05
  55. music:Play()
  56. music.Ended:Wait()
  57. music:Stop()
  58.  
  59. music.SoundId = ID_06
  60. music:Play()
  61. music.Ended:Wait()
  62. music:Stop()
  63.  
  64. music.SoundId = ID_07
  65. music:Play()
  66. music.Ended:Wait()
  67. music:Stop()
  68. -- Endplate
  69. end
  70.  
  71.  
  72.  
  73.  
  74. -- Misc Commands
  75. -- You can add ur own misc commands by doing what i do below
  76. local animr6 = "?r6"
  77. local animr15 = "?r15"
  78. local animr6_2 = "?r6-2" -- R6 But no Body Animation
  79. local anim15_2 = "?r15-2" -- R15 But no Body Animation
  80. local rj = "?rejoin" -- Rejoin
  81. local destroy = "?reset" -- Destroy Local Character
  82.  
  83.  
  84.  
  85. -- Commands
  86. -- You can add ur own morph commands by doing what i do below
  87. local neptun = "?neptunian" -- Neptunian V FE
  88. local chara = "?chara" -- Chara
  89. local krystal = "?krystal" -- Krystal Dnace v2
  90. local abyss = "?abyss" -- Abyss Eye
  91. local nekov2 = "?neko" -- Neko v2
  92. local echo = "?echo" -- Echo
  93. local henry = "?distract" -- Distraction Dance
  94. local chips = "?chip" -- Chips
  95. local caduc = "?caducus" -- Caducus
  96. local rking = "?rainbowking" -- Rainbow King
  97. local fave = "?K" -- fave
  98. local jitc = "?caac" -- Jump in the caac
  99. local lennyface = "?booty" -- Booty Offender
  100. local glitcher = "?glitcher" -- Ahcromatic
  101. local lustris = "?lutris" -- Lutris v2
  102. local SUN = "?sun" -- Sun IaDL v3
  103. local fatboi = "?cleetus" -- Cleetus
  104. local john = "?jd" -- The Myth, the legend..... JOHN DOE
  105. local uno = "?uno" -- Uno Card
  106. local disorted = "?glitch" -- ???
  107. local gfc = "?chair" -- Grand Flying Chair
  108. local zen = "?zen" -- Zen Master
  109. local bleach = "?kys" -- Bleach
  110. local jev = "?jevil" -- Jevil
  111. local betty = "?betty" -- Betty Noire
  112.  
  113.  
  114.  
  115. -- Commands Functions
  116. -- Add ur morph commands function so ur commands works
  117. plr.Chatted:connect(function(message)
  118.     if message:sub(1) == chara then
  119.        -- Looks like its broken
  120.        loadstring(game:HttpGet("https://pastebin.com/raw/QSqGetGS"))()
  121.     end
  122. end)
  123.  
  124. plr.Chatted:connect(function(message)
  125.     if message:sub(1) == neptun then
  126.        loadstring(game:HttpGet("https://pastebin.com/raw/LBRq0zjp"))()
  127.     end
  128. end)
  129.  
  130. plr.Chatted:connect(function(message)
  131.     if message:sub(1) == bleach then
  132.        loadstring(game:HttpGet("https://pastebin.com/raw/9HLV4u4W"))()
  133.     end
  134. end)
  135.  
  136. plr.Chatted:connect(function(message)
  137.     if message:sub(1) == jev then
  138.        loadstring(game:HttpGet("https://pastebin.com/raw/ZPDZ7kvf"))()
  139.     end
  140. end)
  141.  
  142. plr.Chatted:connect(function(message)
  143.     if message:sub(1) == betty then
  144.        loadstring(game:HttpGet("https://pastebin.com/raw/NQWUbNxf"))()
  145.     end
  146. end)
  147.  
  148. plr.Chatted:connect(function(message)
  149.     if message:sub(1) == krystal then
  150.        loadstring(game:HttpGet("https://pastebin.com/raw/eP1xiJHv"))()
  151.     end
  152. end)
  153.  
  154. plr.Chatted:connect(function(message)
  155.     if message:sub(1) == abyss then
  156.        loadstring(game:HttpGet("https://pastebin.com/raw/JdBLBAHt"))()
  157.     end
  158. end)
  159.  
  160. plr.Chatted:connect(function(message)
  161.     if message:sub(1) == nekov2 then
  162.        -- Looks like its broken again
  163.        loadstring(game:HttpGet("https://pastebin.com/raw/N1mgeaAw"))()
  164.     end
  165. end)
  166.  
  167. plr.Chatted:connect(function(message)
  168.     if message:sub(1) == echo then
  169.        loadstring(game:HttpGet("https://pastebin.com/raw/Q26pZq9J"))()
  170.     end
  171. end)
  172.  
  173. plr.Chatted:connect(function(message)
  174.     if message:sub(1) == henry then
  175.        local messagereq = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  176.        wait(2)
  177.        messagereq:FireServer(
  178.        "[You pick Distraction]",
  179.        "All"
  180.        )
  181.        wait(0.3)
  182.        loadstring(game:HttpGet("https://pastebin.com/raw/EKm8LmLg"))()
  183.     end
  184. end)
  185.  
  186. plr.Chatted:connect(function(message)
  187.     if message:sub(1) == chips then
  188.        loadstring(game:HttpGet("https://pastebin.com/raw/MqYF5ScS"))()
  189.     end
  190. end)
  191.  
  192. plr.Chatted:connect(function(message)
  193.     if message:sub(1) == lustris then
  194.        loadstring(game:HttpGet("https://pastebin.com/raw/sLRAamNw"))()
  195.     end
  196. end)
  197.  
  198. plr.Chatted:connect(function(message)
  199.     if message:sub(1) == caduc then
  200.        loadstring(game:HttpGet("https://pastebin.com/raw/U3Lrne8Z"))()
  201.     end
  202. end)
  203.  
  204. plr.Chatted:connect(function(message)
  205.     if message:sub(1) == rking then
  206.        loadstring(game:HttpGet("https://pastebin.com/raw/wr25juvx"))()
  207.     end
  208. end)
  209.  
  210. plr.Chatted:connect(function(message)
  211.     if message:sub(1) == fave then
  212.        local messagereq = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  213.        wait(2)
  214.        messagereq:FireServer(
  215.        "Fave was here (or is it?)",
  216.        "All"
  217.        )
  218.        wait(0.5)
  219.        loadstring(game:HttpGet("https://pastebin.com/raw/F9Ha4wtf"))()
  220.     end
  221. end)
  222.  
  223. plr.Chatted:connect(function(message)
  224.     if message:sub(1) == jitc then
  225.        loadstring(game:HttpGet("https://pastebin.com/raw/s7LqFwaE"))()
  226.     end
  227. end)
  228.  
  229. plr.Chatted:connect(function(message)
  230.     if message:sub(1) == lennyface then
  231.        loadstring(game:HttpGet("https://pastebin.com/raw/nFxSYkM1"))()
  232.     end
  233. end)
  234.  
  235. plr.Chatted:connect(function(message)
  236.     if message:sub(1) == glitcher then
  237.        loadstring(game:HttpGet("https://pastebin.com/raw/MJvawrRj"))()
  238.     end
  239. end)
  240.  
  241. plr.Chatted:connect(function(message)
  242.     if message:sub(1) == SUN then
  243.        loadstring(game:HttpGet("https://pastebin.com/raw/L93KF7Ts"))()
  244.     end
  245. end)
  246.  
  247. plr.Chatted:connect(function(message)
  248.     if message:sub(1) == fatboi then
  249.        local messagereq = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  250.        wait(2)
  251.        messagereq:FireServer(
  252.        "Wait, it got leaked?",
  253.        "All"
  254.        )
  255.        local messagereq1 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  256.        wait(0.5)
  257.        messagereq1:FireServer(
  258.        "Always has been",
  259.        "All"
  260.        )
  261.        loadstring(game:HttpGet("https://pastebin.com/raw/ebnLEt3E"))()
  262.     end
  263. end)
  264.  
  265. plr.Chatted:connect(function(message)
  266.     if message:sub(1) == john then
  267.        local messagereq = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  268.        wait(2)
  269.        messagereq:FireServer(
  270.        "The Myth",
  271.        "All"
  272.        )
  273.        wait(1.5)
  274.        local SayMessageRequest1 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  275.        SayMessageRequest1:FireServer(
  276.        "The Legend",
  277.        "All"
  278.        )
  279.        wait(1.5)
  280.        local SayMessageRequest2 = game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest
  281.        SayMessageRequest2:FireServer(
  282.        "J O H N  D O E",
  283.        "All"
  284.        )
  285.        loadstring(game:HttpGet("https://pastebin.com/raw/5QGSBbpS"))()
  286.     end
  287. end)
  288.  
  289. plr.Chatted:connect(function(message)
  290.     if message:sub(1) == uno then
  291.        loadstring(game:HttpGet("https://pastebin.com/raw/pcNrbqvZ"))()
  292.     end
  293. end)
  294.  
  295. plr.Chatted:connect(function(message)
  296.     if message:sub(1) == disorted then
  297.        loadstring(game:HttpGet("https://pastebin.com/raw/FbHwypvC"))()
  298.     end
  299. end)
  300.  
  301. plr.Chatted:connect(function(message)
  302.     if message:sub(1) == gfc then
  303.        loadstring(game:HttpGet("https://pastebin.com/raw/zUCqtqRu"))()
  304.     end
  305. end)
  306.  
  307. plr.Chatted:connect(function(message)
  308.     if message:sub(1) == zen then
  309.        -- Looks like its broken too
  310.        loadstring(game:HttpGet("https://pastebin.com/raw/rrpPMCea"))()
  311.     end
  312. end)
  313.  
  314. plr.Chatted:connect(function(message)
  315.     if message:sub(1) == "?admin" then
  316.        loadstring(game:HttpGet("https://pastebin.com/raw/bfDdNE2C"))()
  317.     end
  318. end)
  319.  
  320.  
  321. plr.Chatted:connect(function(message)
  322.     if message:sub(1) == "?sword" then
  323.        loadstring(game:HttpGet("https://pastebin.com/raw/28Jb3KWu"))()
  324.     end
  325. end)
  326.  
  327. plr.Chatted:connect(function(message)
  328.     if message:sub(1) == "?aurate" then
  329.        loadstring(game:HttpGet("https://pastebin.com/raw/VRKQSS2h"))()
  330.     end
  331. end)
  332.  
  333. plr.Chatted:connect(function(message)
  334.     if message:sub(1) == "?bhammer" then
  335.        loadstring(game:HttpGet("https://pastebin.com/raw/1mnzwCuA"))()
  336.     end
  337. end)
  338.  
  339.  
  340.  
  341.  
  342.  
  343.  
  344.  
  345. -- Misc Commands Function
  346. -- Add ur misc commands function so ur commands works
  347. plr.Chatted:connect(function(message)
  348.     if message:sub(1) == animr6 then
  349.        loadstring(game:HttpGet("https://pastebin.com/raw/eyqwrFCP"))()
  350.     end
  351. end)
  352.  
  353. plr.Chatted:connect(function(message)
  354.     if message:sub(1) == animr15 then
  355.        loadstring(game:HttpGet("https://pastebin.com/raw/X5e392Nq"))()
  356.     end
  357. end)
  358.  
  359. plr.Chatted:connect(function(message)
  360.     if message:sub(1) == animr6_2 then
  361.        loadstring(game:HttpGet("https://pastebin.com/raw/E4kSkkk0"))()
  362.     end
  363. end)
  364.  
  365. plr.Chatted:connect(function(message)
  366.     if message:sub(1) == animr15_2 then
  367.        loadstring(game:HttpGet("https://pastebin.com/raw/hV821ksG"))()
  368.     end
  369. end)
  370.  
  371. plr.Chatted:connect(function(message)
  372.     if message:sub(1) == rj then
  373.        teleserv:Teleport(place, plr)
  374.     end
  375. end)
  376.  
  377. plr.Chatted:connect(function(message)
  378.     if message:sub(1) == destroy then
  379.        char:BreakJoints()
  380.     end
  381. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement