of     1   

EternalSouI
#163752898Friday, June 05, 2015 3:52 AM GMT

local plr = game.Players.LocalPlayer local m = plr:GetMouse() m.KeyDown:connect(function(key) if plr.Name == "EternalSouI" and key == "x" then p = Instance.new("Fire", x) p.Heat = 1 p.Size = 2.5 p.Color = Color3.new(255, 85, 0) workspace[plr.Name].Humanoid.WalkSpeed = 25 end end) So I'm trying to make it that when you press x, your walkspeed gets changed but only works for a certain person (I already have that down). But I cannot make the script add fire that is located inside of your head. I'm just asking for help, I'm not asking for you to make it for me. You can though.
TC8950
#163755577Friday, June 05, 2015 4:35 AM GMT

I changed it up a bit, and I tested it (it worked). local plr = game.Players.LocalPlayer local m = plr:GetMouse() m.KeyDown:connect(function(key) if plr.Name == "EternalSouI" and key == "x" then local plyr = plr.Name local p = Instance.new("Fire", x) p.Parent = game.Workspace:FindFirstChild(plyr).Head p.Heat = 1 p.Size = 2.5 p.Color = Color3.new(255, 85, 0) game.Workspace:FindFirstChild(plyr).Humanoid.WalkSpeed = 25 end end) I created a local variable with the direct name of the player for the walkspeed and fire.
EternalSouI
#163757621Friday, June 05, 2015 5:12 AM GMT

Thanks for the script but I made a copy of the script and tried to make it that you can make your ROBLOX character normal with normal walkspeed. I can make the walkspeed normal but the fire, I make the size 0 but nothing happens, I still have fire.
Lightlimn
#163760043Friday, June 05, 2015 6:18 AM GMT

"p.Color = Color3.new(255, 85, 0)" m7 do u evn
EternalSouI
#163804855Friday, June 05, 2015 10:46 PM GMT

local plr = game.Players.LocalPlayer local m = plr:GetMouse() m.KeyDown:connect(function(key) if plr.Name == "EternalSouI" and key == "x" then local plyr = plr.Name local p = Instance.new("Fire", x) p.Parent = game.Workspace:FindFirstChild(plyr).Head p.Heat = 0 p.Size = 0 p.Color = Color3.new(0, 0, 0) game.Workspace:FindFirstChild(plyr).Humanoid.WalkSpeed = 16 end end) This is the script that I'm trying to make it that you can turn off the speed and fire but it doesn't work.

    of     1