View difference between Paste ID: 8ufbWDUz and 8hvt6eag
SHOW: | | - or go back to the newest paste.
1
plyr = game.Players.LocalPlayer
2-
char = plyr.Character
2+
char = plyr.Starmangamer05
3
torso = char.Torso
4
head = char.Head
5
Run = game:service'RunService'
6
sizeCu = 2
7
local MODE = "Lime green"
8
coroutine.wrap(function()
9
while true do
10
coroutine.wrap(function()
11
		local charge = Instance.new("Part", char)
12
		charge.FormFactor = "Custom"
13
		charge.TopSurface = 0
14
		charge.BottomSurface = 0
15
		charge.Transparency = 0.4
16
		charge.BrickColor = BrickColor.new(MODE)
17
		charge.Anchored = true
18
		charge.CanCollide = false
19
		charge.Size = Vector3.new(sizeCu, sizeCu, sizeCu)
20
				charge.CFrame = head.CFrame * CFrame.new(0, 5.8, 0) * CFrame.Angles(math.random(-2, 2), math.random(-2, 2), math.random(-2, 2))
21
		wait()
22
		for tra = 0.4, 1, 0.1 do
23
			charge.Transparency = tra
24
			wait()
25
		end
26
		charge:Destroy()
27
		end)()
28
		wait(0.06)
29
end
30
end)()
31
32
happy = {"yay", "good", "like", "come here", "yolo", "swag", "win","nice","xD" ,"lol","yus","yes","omg", "ogm", "umg", "thnx", "thx", "thanz", "thanx", "thank you", "thank yoo", "rofl", "hax" , "Z0mg", "hackz" , "hack","impossible","boss","epix","epic", "awesome"} --is THat Good, yes
33
anger = {"narb","bad","shut up", "noob", "get off","stop", "hate", "ugly", "bish","no", "idiot", "stfu", "gtfo" ,"fk y", "troll", "mad","angry"}
34
sad = {"sad","why?", "D:"}
35
plyr.Chatted:connect(function(msg)
36
	if msg:lower():match(string.lower("AFK")) or msg:upper():match(string.upper("AFK")) then
37
		MODE = "Br. yellowish orange"
38
	end
39
	
40
                for i, t in pairs(happy) do        
41
                        if msg:lower():match(string.lower(t)) or msg:upper():match(string.upper(t)) then
42
                                MODE = "Lime green"
43
                        end
44
                end
45
                for f, h in pairs(sad) do        
46
                        if msg:lower():match(string.lower(h)) or msg:upper():match(string.upper(h)) then
47
                                MODE = "Royal purple" ---Make it Purple
48
                        end
49
                end
50
                                for v, k in pairs(anger) do        
51
                        if msg:lower():match(string.lower(k)) or msg:upper():match(string.upper(k)) then
52
                                MODE = "Really red"
53
                        end
54
                end
55
        end)