of     1   

LeztexTV
#139396475Sunday, July 06, 2014 5:47 AM GMT

Instance.new("Explosion", script.Parent) wait(4.50) It won't work I want it to do it after 4 and a half seconds then stop
Thermobaric
#139396576Sunday, July 06, 2014 5:49 AM GMT

a=Instance.new("Explosion", script.Parent) a.Position = script.Parent.Position wait(4.50)
LeztexTV
#139396723Sunday, July 06, 2014 5:51 AM GMT

Still doesnt wait 4.5 secounds
xXaidilXx
#139396841Sunday, July 06, 2014 5:53 AM GMT

did you make it loop for 4.5 seconds?
xXaidilXx
#139396887Sunday, July 06, 2014 5:53 AM GMT

i mean did you want make it loop every 4.5 seconds?
Thermobaric
#139396907Sunday, July 06, 2014 5:54 AM GMT

wait(4.5) a=Instance.new("Explosion", script.Parent) a.Position = script.Parent.Position
LeztexTV
#139397102Sunday, July 06, 2014 5:56 AM GMT

Still no? wait(4.5) a=Instance.new("Explosion", script.Parent) a.Position = script.Parent.Position
LeztexTV
#139397360Sunday, July 06, 2014 6:00 AM GMT

Maybe has something to do with the script befoer it for i = 3, 100 do script.Parent.CFrame = script.Parent.CFrame+Vector3.new(0, .5, 0) wait() end
LeztexTV
#139464420Sunday, July 06, 2014 10:35 PM GMT

bump
LeztexTV
#139467935Sunday, July 06, 2014 11:14 PM GMT

Bump
AnonyAnonymous
#139468379Sunday, July 06, 2014 11:19 PM GMT

A = Instance.new("Explosion") wait(4.50) A.Parent = script.Parent A.Position = script.Parent.Position

    of     1